EVE-NG Linux VM SSH troubleshooting
September 20, 2025
OAuth Client Credentials flow with Patreon
In the previous post, we covered how to implement the Authorization Code flow (3-legged) using the OAuth 2.0 Framework. Now, let’s explore a practical example of the Client Credentials flow (2-legged).
Patreon
We’ll continue using Patreon as our platform, building on what we discussed earlier.
First, we need to register a new application on Patreon. Go to Clients & API Keys -> Create Client:
- Name: Test API
- Description: Testing API via OAuth
- App Category: Member Benefits
- Redirect URIs: http://localhost:5000/callback
- Client API Version: 2
Continue reading the post on Patreon .