You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to the API returning a 403 status code with the following data:
{
"code": 403,
"message": "The caller does not have permission",
"errors": [{
"domain": "youtube.api.CommonRequestError",
"reason": "ERROR_MISSING_SCOPE"
}],
"status": "PERMISSION_DENIED"
}
Even though the scope seems to be specified. I am able to not reproduce this using Google's OAuth2 playground so its a problem on the library's side.
The error could possibly be narrowed down to one of the following:
The scope url is spelt incorrectly
The scope is not being used in the correct way (most likely but harder to fix as I would have to figure out what I'm doing wrong and how to implement it correctly so I hope this isn't the case and its something much simpler)
The text was updated successfully, but these errors were encountered:
Specifying the
youtubepartner-channel-audit
scope is not working correctly.When authorising via
The scope appears on the consent screen fine, and everything else works ok up until
which raises
Due to the API returning a
403
status code with the following data:Even though the scope seems to be specified. I am able to not reproduce this using Google's OAuth2 playground so its a problem on the library's side.
The error could possibly be narrowed down to one of the following:
The scope url is spelt incorrectlyThe text was updated successfully, but these errors were encountered: