Youtube Data API v3总是给我错误

时间:2015-11-10 09:18:10

标签: android youtube-data-api

我正在尝试制作一项允许用户将视频上传到youtube的任务

我正在尝试让这款应用运行:https://github.com/youtube/yt-direct-lite-android

但它总是给我以下错误

com.google.api.client.googleapis.json.GoogleJsonResponseException: 403 Forbidden
{
  "code": 403,
  "errors": [
    {
      "domain": "usageLimits",
      "message": "Access Not Configured. The API (YouTube Data API) is not enabled for your project. Please use the Google Developers Console to update your configuration.",
      "reason": "accessNotConfigured",
      "extendedHelp": "https://console.developers.google.com"
    }
  ],
  "message": "Access Not Configured. The API (YouTube Data API) is not enabled for your project. Please use the Google Developers Console to update your configuration."
}

虽然我已经使用Auth2.0添加了android API密钥但没有它但没有任何工作。

任何人都可以帮忙,或者至少给我一个上传YouTube视频的简单示例。

1 个答案:

答案 0 :(得分:1)

最后,我在谷歌帐户上启用youtube服务后,示例与我合作

使用以下链接:https://developers.google.com/apis-explorer/#p/youtube/v3/youtube.channels.list

我在以下网站上找到了上一个链接:http://www.codeproject.com/Articles/888694/Youtube-Data-API-v-on-Android-Introduction