Skip to content Skip to sidebar Skip to footer

Daily Limit For Unauthenticated Use Exceeded. Continued Use Requires Signup

I am trying to fetch video details using YouTube Data API v3 in my android app. Now I am getting the following error even though I am using an API Key. How can I resolve it? 0

Solution 1:

Try to set api key on your query. It may resolve your problem. ex:

YouTube.Videos.ListlistVideosRequest= youtube.videos().list("snippet").setId(videoId);
          listVideosRequest.setKey(apiKey);
          VideoListResponselistResponse= listVideosRequest.execute();

Solution 2:

This issue seems to be due to not verified OAuth consent sreen by Google. They sometimes take a very long time to verify them and if your app is very popular, it reaches the Daily Limit for Unauthenticated Use rather quickly. So, there isn't much you can do other than contacting Google Trust & Safety team to expedite verification.

Post a Comment for "Daily Limit For Unauthenticated Use Exceeded. Continued Use Requires Signup"