小编典典

出现错误403:未配置访问。请使用Google Developers Console激活您项目的API

javascript

我正在尝试使用Youtube API提取特定频道中的所有视频。我在Google Developers
Console中设置了项目,并获得了API浏览器密钥。我启用了YouTube数据API v3,为了安全起见,我启用了YouTube分析API。

我不知道我得到了什么错误。谁能帮我。

{
 "error": {
  "errors": [
   {
    "domain": "usageLimits",
    "reason": "accessNotConfigured",
    "message": "Access Not Configured. Please use Google Developers Console to activate the API for your project."
   }
  ],
  "code": 403,
  "message": "Access Not Configured. Please use Google Developers Console to activate the API for your project."
 }
}

我正在使用的代码。它什么也没做,只是尝试获取数据。

jQuery.getJSON('https://www.googleapis.com/youtube/v3/channels?part=UncleBens&id=UncleBens&key=AIzaSyDXD80S1mFHH2HSZFxLemkae-_Cl_nY5Xk', function(data){
    console.log(data);
    for(var i=0; i<data.data.items.length; i++) {
       console.log(data.data.items[i].title); // title
       console.log(data.data.items[i].description); // description
    }
});

阅读 416

收藏
2020-05-01

共1个答案

小编典典

您必须启用几个API(在新的Google控制台中),一切才能正常进行。

转到https://console.developers.google.com,并确保在“ API”下已启用以下API:

1.“联系人API”
2.“ Google+ API”

2020-05-01