youtube GeolocationSearch超出未经身份验证的使用限制

时间:2015-09-02 07:45:54

标签: youtube

我从https://developers.google.com/youtube/v3/docs/videos/list

下载了几个样本

search.java UpdateVideo.java 可以成功投放,这意味着我已应用youtube.apikeyclient_secret和{{1}成功,或者这两个代码将无法运行。但是当我运行 GeolocaionSearch.java 时,它总是显示我

  

出现服务错误:403:未经身份验证的每日限制   超标。继续使用需要注册。

当我跑步时

client_id

和此行之前的行

VideoListResponse listResponse = listVideosRequest.execute();

可以成功运行,我可以获得视频ID。

我不知道为什么它会向我显示错误。

1 个答案:

答案 0 :(得分:1)

我确信这是正确的答案: YouTube.Videos.List listVideosRequest = youtube.videos()。list(" snippet")。setId(videoId);           listVideosRequest.setKey(apiKey);           VideoListResponse listResponse = listVideosRequest.execute();