-
Notifications
You must be signed in to change notification settings - Fork 2
Application Registration for Resource API
Bishal Pun edited this page Jun 15, 2018
·
1 revision
In this guide, you will learn to create new Application.
- Click on the create button of OAuth Provider Client view.
- Write application name.
- Client identifier will be generated automatically.
- You can write method to generate client secret automatically, for now it is manual.
- Choose your desired application type
- Web application resembles and computes Authorization Code grant type.
- Mobile application resembles and computes Implicit grant type.
- Legacy application resembles and computes Password grant type.
- Backend application resembles and computes Client Credentials grant type.
- Check the skip authorization Boolean in order to skip the authorization process.
- Select allowed scopes.
- Choose token type to return. The base module only provides randomly generated tokens. Install oauth_provider_jwt module to enable JWT toke type.
- Input redirect urls.
- If you install oauth_provider_jwt module then JSON web token notebook page appears. Select the appropriate algorithm to generate JWT.
- Click on the Generate a new random hmac key button to generate the Public/Private pair.