我已设法使用Google API for Youtube获取有效的OAuth 2令牌,但出于某种原因,在我的代码(PHP)或Youtube API中的测试工具中发出请求时(例如:{ {3}}),我一直收到以下错误:
[errors] => Array(
[0] => Array(
[domain] => youtube.header
[reason] => youtubeSignupRequired
[message] => Unauthorized
[locationType] => header
[location] => Authorization
)
)
[code] => 401
[message] => Unauthorized
OR
{
"error": {
"errors": [
{
"domain": "usageLimits",
"reason": "accessNotConfigured",
"message": "Access Not Configured"
}],
"code": 403,
"message": "Access Not Configured"
}
}
有人可以提供建议吗?
提前谢谢。
答案 0 :(得分:1)
这可能意味着您尚未启用YouTube数据API。然而,401和403意味着完全不同的东西,所以这里是我要寻找的事项清单:
完成后,您将能够下载并运行PHP示例。我们也有tutorial video。