Joel Watson

Joel.Watson92@gmail.com | LinkedIn: /in/joel3rbear | Twitter: @Joel3rBear


Project maintained by JoelMWatson Hosted on GitHub Pages — Theme by mattgraham

Home » Reading Notes » OAuth


Class 12 Reading: OAuth

What’s a benefit of using OAuth instead of your own basic authentication?

One of the benefits of using OAuth instead of your own basic authentication is that, it allows you to delegate authorization to a trusted third party also allowing the user to be authenticated without creating a whole new account.

Write the following steps in the correct order:

What can you do with an authorization code?

Authorization codes allow a server to request specific secret information about a user from a third party where the user has allowed us access.

What can you do with an access token?

Access tokens allow us to make requests to a third party api on behalf of a user.