Hi,
I’m trying to make a program to get the private posts of this campaign. I have an account that pledged to that campaign, so in my account i have access to those private posts, I’m just trying to get their info programmatically.
To that end, I made an oauth client by following all the steps described in the oatuh docs.
Using the oauth process I’m successfully getting the secret token, so I think that’s not the problem. The problem is that when I hit the campaign posts endpoint, it returns me an empty result:
{
"data": [],
"meta": {
"pagination": {
"total": 0
}
}
}
The url for the requests I’m using is: https://www.patreon.com/api/oauth2/v2/campaigns/293332/posts?fields[post]=title
Note that the url requests for specific fields by including the ?fields[post]=title
query param.
The scope of the token includes campaigns.posts
as requested by the docs. All the scopes of the token are: campaigns campaigns.posts identity identity.memberships campaigns.members campaigns.members[email] campaigns.members.address