OAuth2 authorization code flow
A few notes on oauth2 authorization code flow. Photo by The New York Public Library OAuth2 is an authorization delegation protocol. Meaning: to grant some third party granular access to user resources on their behalf without impersonating them or sharing secrets/passwords. The RFC6749 and [RFC6750(https://www.ietf.org/rfc/rfc6750.txt)] cover the protocol flows in detail: Authorization Code Grant Implicit Grant Resource Owner Password Credentials Grant Client Credentials Grant In these notes the authorization code flow is covered....