About 109,000 results
Open links in new tab
  1. authentication - Why is 'Bearer' required before the token in ...

    Dec 21, 2015 · What exactly is the difference between following two headers: Authorization : Bearer cn389ncoiwuencr vs Authorization : cn389ncoiwuencr All the sources which I have …

  2. authentication - How would replacing Bearer tokens with HMAC …

    7 This Pluralsight class discusses Bearer tokens, and that one of the things missing from OAuth 2.0 is HMAC based validation. Elsewhere on the thinktecture blogs, they are called PoP …

  3. Should JWT token be stored in a cookie, header or body

    Authorization: Bearer <the token> And then you have many libraries which will parse the header and extract the needed information for you, depending on your language.

  4. oauth - JWT-bearer grant with JWT assertion vs. client credentials ...

    Jan 14, 2025 · Note that the JWT bearer token doesn't contain the client credentials and may have to be combined with client authentication. For example, in the Microsoft On-Behalf-Of …

  5. Carrying two authorization tokens in a request

    This originates a token that is usually carried in the Authorization header (with Bearer prefix). In our case, the absence of this token will drive us to ask the user to authenticate to the "main …

  6. JWT vs. Client Certificates - Information Security Stack Exchange

    JWT token is a competing technology to session cookies, other bearer tokens and other similar short-lived tokens like Kerberos tickets/tokens, it is not a primary means of authentication but …

  7. tls - Bearer token in header as Basic token? - Does that violate the ...

    Nov 20, 2024 · Bearer token in header as Basic token? - Does that violate the RFC6749 spec? Ask Question Asked 11 months ago Modified 11 months ago

  8. Why do big sites use cookies and not OpenID connect?

    Aug 18, 2022 · Bearer tokens, by comparison, are only viable for client-script-driven apps (which, in this day of React and GraphQL and so forth, is a lot of the new apps... but there's still tons …

  9. oauth - How is pop token more secure than bearer token?

    Jul 2, 2021 · Bearer token if lost (during transit over the wire) can give the holder of the token same privileges as the genuine owner. POP token is supposed to additional security by …

  10. Do I need CSRF token if I'm using Bearer JWT?

    Sep 29, 2017 · Bearer tokens, or other HTTP header based tokens that need to be added manually, would prevent you from CSRF. Of course, but sort of off-topic, if you have a XSS …