tezvyn:

How do you include a JWT in a fetch request?

Source: developer.mozilla.orgintermediate

Tests knowledge of the fetch options object and Bearer scheme syntax. A strong answer sets headers: { Authorization: Bearer <token> } as the second argument and notes fetch does not auto-attach tokens. Red flag: omitting Bearer or hardcoding secrets.

Tests whether you understand fetch's request configuration pattern and standard HTTP auth header formatting. A strong answer shows the second options argument with a headers object containing Authorization: Bearer <token>, explains that fetch requires manual header attachment unlike XMLHttpRequest, and mentions security practices like avoiding token logging. Red flag: omitting the Bearer prefix, placing the token in the URL query string, or failing to mention that tokens must be passed explicitly.

Read the original → developer.mozilla.org

Get five bites like this every day.

Tezvyn delivers a daily feed of 60-second tech bites with quizzes to lock in what you learn.

How do you include a JWT in a fetch request? · Tezvyn