Is there a Node OAuth Server Implementation

node.jsOauth

node.js Problem Overview


I only found the oauth client library for nodejs. Does anybody know where I can find a server implementation?

Thanks,
Hao.

node.js Solutions


Solution 1 - node.js

I've just released OAuthorize, which is a suite of middleware for implementing an OAuth 1.0a server. It is highly modular, letting you tune it to meet your requirements. It integrates seamlessly with Passport for authentication, using passport-http-oauth to protect APIs using access tokens.

Update: OAuth2orize is now available. It follows similar patterns, but implements support for OAuth 2.0.

Solution 2 - node.js

Pierre Ruyssen has a few OAuth2 projects. I've never used them nor do I know how far along they are, but you could check them out:

Solution 3 - node.js

Searching http://search.npmjs.org I found https://github.com/selead/oauth-server, but it uses OAuth 1.0A protocol and last commit was at April 19, 2011. But then again I guess you should just have look and it might just fit your needs.

Solution 4 - node.js

I found another one: https://github.com/ammmir/node-oauth2-provider. It use Connect and ExpressJS.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionagateView Question on Stackoverflow
Solution 1 - node.jsJared HansonView Answer on Stackoverflow
Solution 2 - node.jsTaurenView Answer on Stackoverflow
Solution 3 - node.jsAlfredView Answer on Stackoverflow
Solution 4 - node.jsKimKhaView Answer on Stackoverflow