Introduction to OAuth

Leave a comment

OAuth is an open standard for authorization of websites and applications. It provides these applications with a simple, secure way allow their users to access their data.

For example, let’s say you are a developer building an application. OAuth allows you to delegate the authorization. There are many websites and mobile applications that use Facebook or Google to authentication users. This is done through OAuth.

OAuth has many benefits. The framework does not use passwords in its authentication, which is useful as 3rd party applications do not need to store and protect passwords. Users can also revoke access easily.

The setup process for a website or application is something like as follows:

  1. The website needs to first register with the authorization service, e.g. Facebook. They provide information including what the app is and the URL it will route to once the authorization is complete. This is called the Callback URL.
  2. The authorization service, i.e. Facebook, will then provide the website with a Client ID and a Client Secret. The Client ID is a public id that tells Facebook which application is calling its authorization service. The Client Secret is a private secret that confirms the identity of the website application.

Once set up, the sequence of events from a user request is something like below:

  1. User goes to website and is presented with a login choice, e.g. login via Facebook. User selects this option.
  2. User is presented with a login screen from Facebook. User enters username and password. If the user has already authenticated via Facebook previously, the login will not be presented.
  3. User is presented with a screen that asks if you would like to grant permission to the website to access Facebook information. This amount of information can vary. The user accepts.
  4. Facebook sends an authorization code saying the user has granted access.
  5. The website now sends a request to get an access token to Facebook.
  6. Facebook returns this request with an access token for the user of the website. The token will be used to get specific data that the user granted permissions to above.
  7. The website now sends a request to Facebook to get the actual data. This includes the access token, so Facebook knows the request is legitimate.
  8. Facebook returns with the user’s specific data.

OAuth is now at version 2.0.

 

THANKS FOR READING. BEFORE YOU LEAVE, I NEED YOUR HELP.
 

I AM SPENDING MORE TIME THESE DAYS CREATING YOUTUBE VIDEOS TO HELP PEOPLE LEARN THE MICROSOFT POWER PLATFORM.

IF YOU WOULD LIKE TO SEE HOW I BUILD APPS, OR FIND SOMETHING USEFUL READING MY BLOG, I WOULD REALLY APPRECIATE YOU SUBSCRIBING TO MY YOUTUBE CHANNEL.

THANK YOU, AND LET'S KEEP LEARNING TOGETHER.

CARL

https://www.youtube.com/carldesouza

 

ABOUT CARL DE SOUZA

Carl de Souza is a developer and architect focusing on Microsoft Dynamics 365, Power BI, Azure, and AI.

carldesouza.comLinkedIn Twitter | YouTube

 

Leave a Reply

Your email address will not be published. Required fields are marked *