-
Notifications
You must be signed in to change notification settings - Fork 1
Authentication Flows
alexbool edited this page Jan 6, 2013
·
3 revisions
This page describes some of the options of obtaining OAuth token for different kinds of users.
Registered users can obtain OAuth token using resource owner credentials grant type:
curl -X POST \
--user <client_id>:<client_secret> \
--data "grant_type=password" \
--data "username=<username>" \
--data "password=<password>" \
http://localhost:8081/oauth/tokenSocial users must use the connect API to obtain OAuth token.
Both standard OAuth API and social API are acceptable.