Complete the code to identify the OAuth 2.0 flow used for server-to-server communication.
The OAuth 2.0 flow used for server-to-server communication is called the [1] flow.
The Client Credentials flow is used when applications request access tokens to access their own resources, not on behalf of a user.
Complete the sentence to explain what OpenID Connect adds to OAuth 2.0.
OpenID Connect adds [1] to OAuth 2.0 to allow user authentication.
OpenID Connect builds on OAuth 2.0 by adding an identity layer, enabling clients to verify the identity of the user.
Fix the error in the statement about OAuth 2.0 tokens.
The [1] token is used to access protected resources directly.The Access token is what clients use to access protected resources. Refresh tokens are used to obtain new access tokens.
Fill both blanks to complete the OpenID Connect authentication flow description.
The client sends an authorization request to the [1] and receives an [2] token upon successful authentication.
The client communicates with the authorization server and receives an ID token to confirm user identity.
Fill all three blanks to complete the OAuth 2.0 token request example.
POST /token HTTP/1.1 Host: [1] Content-Type: application/x-www-form-urlencoded grant_type=[2]&client_id=[3]
This example shows a token request to the authorization server using the client credentials grant type with a client ID.