What is the primary difference between OAuth 1.0 and OAuth 2.0?
- OAuth 1.0 uses HMAC-SHA1 for signing requests, while OAuth 2.0 uses JWT.
- OAuth 1.0 requires client registration, while OAuth 2.0 does not.
- OAuth 1.0 uses two-legged authentication, while OAuth 2.0 uses three-legged authentication.
- OAuth 1.0 is a token-based system, while OAuth 2.0 is a protocol for token-based authentication.
The primary difference is that OAuth 1.0 requires client registration, while OAuth 2.0 does not. OAuth 2.0 introduced a more streamlined and flexible approach to authorization. The other options describe differences but not the primary distinction.
Loading...
Related Quiz
- The ______ command can be used to update the package.json file to match the actual versions installed in the node_modules directory.
- In JavaScript, the condition in an if statement is converted to a ________ value.
- What is the difference between chaining multiple .then() methods and using multiple await expressions?
- You are maintaining a server that has strict security requirements. You need to allow cross-origin requests but with stringent restrictions. How can you implement CORS to fulfill these requirements while maintaining security?
- Which keyword is used to export multiple things from a module in JavaScript?