Title basically says it all. I go to the Network tab and go to the "request headers" but I don't my authentication that is being sent.
-
If the authentication is set correctly, it should appear on Request Headers as "authorization: Bearer your_token" – rashidali Nov 26 '20 at 06:22
-
Does this answer your question? ["CAUTION: provisional headers are shown" in Chrome debugger](https://stackoverflow.com/questions/21177387/caution-provisional-headers-are-shown-in-chrome-debugger) – Emmanuel Apr 22 '23 at 15:59
1 Answers
The authentication header is typically included in the "Request Headers" section of the Network tab. However, if you're not seeing the authentication header there, there are a few possible reasons and solutions:
Check the correct request: Ensure that you're looking at the correct network request in the Network tab. If the authentication header is sent with a different request, you might need to locate and inspect that specific request.
Enable "Preserve log": By default, Chrome DevTools clears the network log on page refresh. To preserve the log and capture the authentication header, right-click anywhere on the Network tab and make sure the "Preserve log" option is checked. This allows you to view the headers of all requests, including subsequent ones.

- 3
- 4