In OAuth2, the _____ grant type is used by clients to exchange user credentials for an access token.
- Authorization Code
- Client Credentials
- Implicit
- Resource Owner Password Credentials
In OAuth2, the "Resource Owner Password Credentials" grant type is used by clients to exchange user credentials (username and password) directly for an access token. This grant type is typically used when the client and authorization server trust each other, and it's not suitable for public clients.
Loading...
Related Quiz
- To simulate HTTP requests and responses in integration tests, Spring Boot provides the _____ class, allowing for testing of controller methods without starting the server.
- Which of the following annotations is specialized over the @Component annotation to indicate that a class is a web controller?
- How does enabling lazy initialization affect the startup time of a Spring Boot application?
- In Spring Boot, which annotation is used to conditionally enable caching only when a certain property is set?
- Which annotation is used to denote a test method in JUnit?