InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by OAuth2 Authorization code grant type? |
|
Answer» The TERM "grant type" in OAuth 2.0 refers to the way an application gets an access token. The authorization code flow is one of several types of grants defined by OAuth 2.0. This grant is used by both web APPLICATIONS and native applications to obtain an access token after a USER authorizes the application. As opposed to most other grant types, it requires the application to first LAUNCH a browser to begin the process/flow. The process involves the following steps:
|
|