Skip to content

Instantly share code, notes, and snippets.

@cseeman
Last active January 14, 2023 20:54
Show Gist options
  • Save cseeman/05c1fe6bc0a8cebdfd63a9798306503a to your computer and use it in GitHub Desktop.
Save cseeman/05c1fe6bc0a8cebdfd63a9798306503a to your computer and use it in GitHub Desktop.
OAuth 2.0 Client Credentials Grant Flow - Mermaid
sequenceDiagram;
    participant C as Client + Resource Owner
    participant A as Authorization Server
    participant R as Resource Server
    
    C->>A: 1. Request access token (POST /token) 
    A->>C: 2. Respone with access token
    C->>R: 3. Request with access token
    R->>C: 4. Response
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment