Please enable JavaScript.
Coggle requires JavaScript to display documents.
OAuth2 - Coggle Diagram
OAuth2
Roles
Resource owner
Client
Resource server
Authorization server
authorization grant
authorization code
step1: Authorization code link
API Authorization end point
client_id
redirect_uri=clallbackuri
response_type=code
scope=read
step2: User atuthorizes the application
step3: Application receives the authorization code
step4: Application requests access token
step5: Application receives access token
implicit
step1: Authorization link
step2: User authorizes the application
step3: User agent receives access token with Redirect URI
step4: User agent follows redirect URI
step5: Application sends access Extraction script
step 6: Access token passed to the application
resource owner password credentials
Used when the application is trusted by the user
client credentials
Access its own service account
end points
/authorize
/token
/revocation