0
votes

I am trying to authenticate and upload videos to youtube from my app. Refering to https://developers.google.com/youtube/v3/docs/videos/insert for the same.

However when I try to do run my android app I consistently get the 403 Access Not Configured error message. When attempting to try the api from https://developers.google.com/youtube/v3/docs/videos/insert , the error I see is "code": 403,"message": "Quota Exceeded".

My app is an android app which used the account manager to fetch an auth token from the account manager and use the same for the upload.

Any help is much appreciated.

1
Did you parse the valid access_token? - DrXCheng
Yes, I was able to view my auth token. - user2356261
Update:I eventually used the resumable upload mechanism to upload my video's.However the same error was seen here.Using an api key for the android app did the trick. - user2356261

1 Answers

0
votes

I eventually used the resumable upload mechanism to upload my video's.However the same error was seen here.Using an api key for the android app did the trick. The Simple api key can be created in one's google api console, with the specific app's sha1/package name updated or the key can be used for any android app.With the api key mentioned, my url looks like this. Let me know if any qn's/comments. I am still figuring out why the need for an api key when the auth token is already available.