Hi @Michael Tippett ,
This article is an overview about Authorization Code flow steps: Authorization Code OAuth flow for SharePoint Add-ins.
Following are the steps in the Authorization Code flow.
1.Client opens an application and then directs it to a SharePoint site for data.
2.The add-in redirects to the SharePoint site authorization URL.
3.SharePoint displays the consent page so the user can grant the add-in permissions.
4.SharePoint requests a short-lived authorization code from ACS.
5.The SharePoint Online site redirects to the app's registered redirect URI, passing the authorization code to the add-in.
6.The add-in uses the authorization code to request an access token from ACS, which validates the request, invalidates the authorization code, and then sends access and refresh tokens to the add-in.
7.The add-in can now use the access token to request data from the SharePoint site, which it can display to the user.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.