I have a node.js API that I want to protect via 2-legged OAuth. Was wondering if anyone knows of a server side implementation for this. Please note that this is for server to server communication and is not to provide user authentication via a 3rd party server.
Asked
Active
Viewed 4,173 times
1
-
https://github.com/ammmir/node-oauth2-provider – Chris Biscardi Dec 05 '11 at 05:39
-
There are a few around. See the following question: https://stackoverflow.com/questions/6822840/is-there-a-node-oauth-server-implementation for details. – Randolpho Jan 23 '12 at 21:38
1 Answers
1
Take a look at passport-http-oauth, a Passport authentication strategy. It implements the OAuth HTTP authorization scheme, and can be used independently of the user authorization flow (as is the case with 2-legged OAuth).

Jared Hanson
- 15,940
- 5
- 48
- 45