request-token tagged requests and articles

Categorized request examples and articles tagged with [request-token] keyword
How do I Send a Request with Bearer Token Authorization Header?
To send a request with a Bearer Token authorization header {{using LANG}}, you need to make an HTTP GET or POST request and provide your Bearer Token with the Authorization: Bearer {token} HTTP header. Bearer Authentication (also called token authentication) is an HTTP authentication scheme created as part of OAuth 2.0 but is now used on its own. For security reasons, bearer tokens are only sent over HTTPS (SSL). In this {{LANG}} Bearer Token Authorization Header example, we send a request with a bearer token to the ReqBin echo URL. Click Send to run the {{LANG}} Bearer Token Authorization Header example online and see the results.