Complete the code to identify the first step in the OAuth 2.0 flow.
User initiates the OAuth 2.0 flow by sending a request to the [1] endpoint.
The OAuth 2.0 flow starts when the user sends a request to the Authorization Server to get permission.
Complete the code to specify the token type returned by the Authorization Server.
After successful authorization, the server returns an access token of type [1].The Authorization Server returns a Bearer Token which the client uses to access protected resources.
Fix the error in the OAuth 2.0 flow step where the client exchanges the authorization code.
Client sends the authorization code to the [1] to exchange it for an access token.
The client must send the authorization code to the Authorization Server to get an access token.
Fill both blanks to complete the OAuth 2.0 flow diagram steps.
1. User requests access from [1]. 2. Client uses an access token to access the [2].
The user requests access from the Authorization Server, and the client uses the access token to access the Resource Server.
Fill all three blanks to complete the OAuth 2.0 token request code snippet.
POST /token HTTP/1.1 Host: [1] Content-Type: application/x-www-form-urlencoded grant_type=[2]&code=[3]
The token request is sent to the Authorization Server with grant_type 'authorization_code' and the actual authorization code value.