I made a new OAuth Client v1 app but when I get my access token and try to query the v1 endpoint https://www.patreon.com/api/oauth2/api/current_user I get a 403 with this response:
{
"errors": [
{
"code": null,
"code_name": "OAuthClientViewForbidden",
"detail": "You do not have permission to view OAuth Client with id [redacted]",
"id": "[redacted]",
"status": "403",
"title": "You do not have permission to view this OAuth Client."
}
]
}
I have an existing OAuth Client v1 and when I talk to the same endpoint with an access token it correctly returns the data without a 403.
Do I need to wait for my OAuth Client v1 to be approved or something?