What Is the Purpose of “Bearer”?

3 points by pbreit ↗ HN
Could someone please explain to me what the purpose is of prefixing Authorization header values with "Bearer"?

4 comments

[ 2.6 ms ] story [ 24.4 ms ] thread
This isn’t really that kind of forum, mate.
its for identifying how the value is parsed. there other values are Basic and Digest which are sending the password to the server. basic is base64 encoded username:password, Digest is similar but the data is hashed with md5 and contains a nonce that can be used to prevent replay attacks.