https://github.com/reneweb/oauth2orize_implicit_example
This is an example of the oAuth implicit flow using oauth2orize, express 4 and mongoDB.
https://github.com/reneweb/oauth2orize_implicit_example
Last synced: over 1 year ago
JSON representation
This is an example of the oAuth implicit flow using oauth2orize, express 4 and mongoDB.
- Host: GitHub
- URL: https://github.com/reneweb/oauth2orize_implicit_example
- Owner: reneweb
- License: mit
- Created: 2014-05-19T15:05:18.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2016-03-07T00:55:53.000Z (over 10 years ago)
- Last Synced: 2025-03-29T12:11:48.093Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 11.7 KB
- Stars: 22
- Watchers: 3
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
oauth2orize_implicit_example
============================
This is an example of the oAuth implicit flow using oauth2orize, express 4 and mongoDB.
##### Installation
```
git clone https://github.com/reneweb/oauth2orize_implicit_example.git
npm install
node app.js
```
Note: You may need to change the database configuration in the db.js file, if mongoDB doesn't run using the default port or is not running on localhost.
##### Usage (with cURL)
###### 0 - Register a client
Navigate to /client/registration. Register a new client.
###### 1 - Register a user
Navigate to /registration. Register a new user.
###### 2 - Get an access token
Navigate to /oauth/authorization?clientId=<clientId>&redirectUri=<redirectUri>&responseType=token. Login with username and password. Then allow the client to access your account.
If everything works the access code is returned in the fragment identifier of the URL.
###### 3 - Access a restricted resource using the access token
```
curl -X GET :/restricted -v -H "Authorization: Bearer "
```