Keep Getting a "Daily Limit For Unauthenticated Use Exceeded. Continued Use Requires Signup" When Attempting to Google Plus Login on My Web App

Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup. When Using Drive API to host videos

Use embedded item instead

As mentioned here, you can embed your videos into your web page rather than get the file through the Google Drive API.

Bear in mind:

  • Google Drive API is intended to develop applications that integrate with Google Drive.
  • Google Drive API has a usage limit for billing and non-billing accounts.

Having that said I strongly recommend you to use <iframe>, since you are using this file in a <video> tag.

Google Drive API Error Daily Limit for Unauthenticated Use Exceeded

The problem was while getting access token. I was not providing correct scopes.
When i changed the scope to

https://spreadsheets.google.com/feeds https://docs.google.com/feeds
https://www.googleapis.com/auth/drive.file

it worked fine

Why I am receiving 'Daily Limit for Unauthenticated Use Exceeded' error when trying to call Google Drive Api from my Electron app?

Found the reason, I was missing a parameter in my api request, the 'oauth_token'. I was expecting this to work out of the box, since I've passed the oAuth2Client object (which had the token info) to the google.drive() function.

  drive.files.list(
{
pageSize: 10,
fields: 'nextPageToken, files(id, name)',
oauth_token: oAuth2Client.credentials.access_token
},
(err, res) => {

}
);


Related Topics



Leave a reply



Submit