manjeshpv / node-oauth2-server-implementation

Using oauth2-server: 3.0.0-b2 & Supports MongoDB, MySQL, PostgreSQL, MSSQL & SQLite
216 stars 103 forks source link

Postman Authorization Key Value #25

Open nakulsolanki opened 6 years ago

nakulsolanki commented 6 years ago

For the following three requests there is a hardcoded header valeu for Authorization key i.e. Basic ZGVtb2NsaWVudDpkZW1vY2xpZW50c2VjcmV0

  1. Password Grant
  2. Client Credentials Grant
  3. Refresh Token

What is this key used for? Can I change it? How?

kshirish commented 6 years ago

Check this link for Basic Authorization Header standard.

nakulsolanki commented 6 years ago

Thanks for the quick response.