Which grant type in OAuth 2.0 is suitable for machine-to-machine applications where a user is not involved?
- Client Credentials
- Authorization Code
- Implicit
- Resource Owner Password Credentials
The Client Credentials grant type in OAuth 2.0 is suitable for machine-to-machine (M2M) applications where there is no user involved. It allows an application to directly authenticate itself and obtain an access token. The other grant types involve user interaction and are not intended for M2M scenarios.
Loading...
Related Quiz
- What happens when an error is thrown inside an async function and it is not caught within the function?
- Which of the following is the correct way to parse JSON in the body of a request in Express.js?
- Which method is used to attach a listener to an event in the Events module of Node.js?
- Why is it important to define the correct path for serving static files in Express.js?
- In Node.js, which method is used to establish a connection to a MongoDB database?