strongloop/loopback-component-oauth2

Is it possible to change Authorization Header name ?

Closed this issue · 2 comments

sh8 commented

I wanna authenticate user like,

GET /protected/protected-apis.html HTTP/1.1
Host: localhost:3001
X-Dummy-API-Key: Bearer cdtXRlBcXBSWrdc6vZbCFGiq3ZUhl0B

Please tell me the way to change Authorization Header name.

loay commented

@shun3475
I am not sure if I got what you meant but do you customized token generation?
Here from the documentation:

Custom functions for token generation

generateToken: function(options) returns a token string
getTTL: function(grantType, clientId, resourceOwner, scopes) returns a ttl number in seconds

If you meant the endpoints?

oauth2.authenticate(['/protected', '/api', '/me'],
  {session: false, scope: 'email'});
loay commented

Closing this issue for now. If you are still running into problems, feel free to leave a comment and I will reopen the issue.
closes#32