我尝试使用Google Calendar API稍微玩一下,但我无法创建OAuth ID(如本例所示:Google Calendar JS API。
我创建了一个项目,单击了Cerdentials,如果您尝试创建OAutho-client-Id,您将转到配置同意选项卡。
您必须输入您的电子邮件地址(标准Google帐户)和项目名称。然后按保存导致错误:
{
"error": {
"code": 403,
"message": "The supplied API key is not configured for use from this referrer.",
"status": "PERMISSION_DENIED",
"details": [
{
"@type": "type.googleapis.com/google.rpc.Help",
"links": [
{
"description": "Google developer console API key",
"url": "https://console.developers.google.com/project/648364020234/apiui/credential"
}
]
}
]
}
}
此JSON中提到的URL我无法访问(无权限)。 我该怎么做才能获得一个简单的oAuth ID?
尝试了几个新项目,其他命名同意项目名称。 还尝试创建一个可供所有客户端引用的API密钥(空字段)。
任何想法?