Categories

Category cover

Automation
155 posts

Category cover

Learning paths
119 posts

Category cover

CISO
22 posts

Category cover

Security
20 posts

Category cover

Notes
19 posts

Category cover

Personal Security
18 posts

Category cover

Infrastructure
12 posts

Category cover

OT/ICS
5 posts

Category cover

Books
3 posts

Category cover

UNetLab
3 posts

Category cover

Write-up
3 posts

Category cover

OSInt
2 posts

Category cover

My life
1 posts

OAuth Authorization Code flow with Patreon

Andrea Dainese
August 24, 2024
Post cover

In our previous post, we introduced the OAuth 2.0 Framework. Now, let’s dive into a practical example using the Authorization Code flow (3-legged).

The term “authorization code” refers to the fact that, in the process, we exchange a temporary token (authorization code) for an access token, which will grant us access to protected resources.

Patreon Integration

Our example focuses on Patreon , where we aim to automate certain tasks using Patreon’s API. According to the documentation , authentication must be done via OAuth, and the full procedure  for OAuth implementation is outlined there.

Registering a New Application

First, we need to register a new application on Patreon. Head over to Clients & API Keys  -> Create Client:

After confirming, your client application should look like this:

Continue reading the post on Patreon .