Patreon is a membership platform that provides tools for creators to run a subscription content service, as well as ways for artists to build relationships and provide exclusive experiences to their subscribers, or "patrons."
Questions tagged [patreon]
38 questions
6
votes
2 answers
How to find user's patreon pledge tier using django-allauth for authentication
I’m using django-allauth to authenticate users (uses Patreon's API v1), which adds a json to the database with the info below. I would like to show extra content on the site if the user's pledge matches a particular tier (or is above one).
{
…

Nick S
- 363
- 1
- 3
- 14
5
votes
1 answer
Linking Patreon API with a Flutter application
I am very new to using Flutter and have never properly used an API without help. I want to make my application free (without tons of ads) so I was hoping to create a Patreon to support it's upkeep. When looking for tutorial videos online or any…

Jared
- 189
- 12
3
votes
0 answers
Determine if a user is pledging on my Patreon
so I'm setting up a Patreon for a game I'm working on, and one of the pledge tiers allows the user to access an in-game chat that nobody else can access (other than other members of that tier).
My game's chat engine allows me to create chats that…

Michael VanOverbeek
- 127
- 2
- 7
2
votes
1 answer
How do I add the `fields` array parameter when making requests to Patreon API using Postman?
I'm currently learning how to use the Patreon API. Before I integrate it into my site, I want to test the endpoints using POSTMAN. For example, I want to test the /campaign endpoint based on this documentation.
However, I'm confused how to set the…

ferdinand
- 325
- 2
- 14
2
votes
0 answers
Patreon Tier Detail, Update & Add
I am developing a patreon app which can get info from patreon and get tier spots_count and if spots_count is less than 4 than add more spots.
From the help of
API Docs
https://docs.patreon.com/
GitCode https://github.com/Patreon/patreon-php
I have…

The IRF
- 470
- 3
- 13
2
votes
1 answer
How to verify Patreon's webhook message?
From Patreon documentation:
the message signature is the HEX digest of the message body HMAC signed (with MD5) using your webhook's secret viewable on the webhooks page. You can use this to verify us as the sender of the message.
This is how I…

Harry
- 181
- 5
- 13
2
votes
2 answers
Fetching A Patron Data From Patreon API
I'm developing a webpage with Laravel 8 and I have issues with fetching a patron details by id from Patreon API. Here is my use case.
I’ve added "Login with Patreon" option to my webpage, and it works well. When someone login with Patreon…

Bulent
- 3,307
- 1
- 14
- 22
2
votes
1 answer
How can I refresh an OAuth2 token? Do I need to wait for the token to Expire? (Patreon API)
I'm trying out OAuth using Patreon's api. I've very new to the OAuth process and had been using Patreon's Javascript Package to help manage the request for me.
NPM: https://www.npmjs.com/package/patreon
Patreon Documentation:…

Jonathan002
- 9,639
- 8
- 37
- 58
1
vote
0 answers
Getting 401 error when fetching from Patreon API
I tried researching, looking through the docs, and running something by Chat GPT, and I couldn't find any answer as to how to fix the 401 error.
import express from 'express';
import fetch from 'node-fetch';
const app = express();
const creatorId…

Tenno
- 11
- 1
1
vote
1 answer
Patreon API not getting access token or refresh token after receiving code in PHP
I'm trying to implement the Patreon API on a project and I've hit a roadblock. I'm able to sign in and receive an authorization code after being redirected back to my site, but for some reason the array that is supposed to have the access and…

ewbst11-web
- 11
- 2
1
vote
1 answer
Can't verify webhook Node.js
I'm attempting to verify a webhook signature from Patreon using Node.js. Here is my code:
const crypto = require("crypto");
...
function validateJsonWebhook(request) {
const secret = SECRET_KEY_GIVEN_BY_PATREON;
const hash =…

Jason
- 41
- 4
1
vote
1 answer
Content subscription model through IAP
We're developing an app similar to patreon.
The app will allow creators to publish their content on the platform and users to see that content. The content will be available only through the app. Users also can subscribe to the creators and get…

Artemis Shlesberg
- 308
- 2
- 10
1
vote
2 answers
How to open Patreon App by using Swift code
I am looking with below code we are able to open facebook or twitter iOS app but is there a way to do it for Patreon App ?
let appURL = NSURL(string: "fb://profile/\(facebook)")!
let webURL = NSURL(string:…
1
vote
0 answers
Patreon - Don't get HTTP query parameters after "Become a Patron" button
I'm trying to implement the "Become a Patron" button on my PHP website (documentation).
As aditional parameters for the "Redirect URL" i set a JOB and a USERID, so my Redirect URL looks something like…

Tjommel
- 13
- 4
0
votes
0 answers
Content creator trying to download my data from patreon
I am a content creator on patreon. I have hundreds of posts there and I am slowly migrating my content to a Wordpress website. I'm hoping to find a way to download all my content from Patreon at once, because it's literally taken me months to do…

Joel
- 2,691
- 7
- 40
- 72