Usage in RESTful API bearer only mode #621
-
Hi! I have noticed that the I think this is perfectly fine for stateful services however it will not work for steteless Node JS APIs where a session is not present. I have seen other less popular libraries solving this problem in combination with Passport. It this possible at all with Maybe there are other helpers/approaches which I'm missing. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This is a login strategy, not an API bearer strategy. https://www.npmjs.com/package/express-oauth2-jwt-bearer might be what you're looking for if your access tokens are in the JWT format. |
Beta Was this translation helpful? Give feedback.
This is a login strategy, not an API bearer strategy. https://www.npmjs.com/package/express-oauth2-jwt-bearer might be what you're looking for if your access tokens are in the JWT format.