403 error with message:Access Not Configured. Please use Google Developers Console to activate the API for your project(403 错误消息:访问未配置.请使用 Google Developers Console 为您的项目激活 API)
问题描述
无法克服这种情况:在 Google 开发者控制台中创建了一个项目他们创建了Web 应用程序的客户端 ID"和服务器应用程序的密钥".
Can't overcome this situation: created a project in the Google developers console they created "Client ID for web application" and "Key for server applications".
在控制台请求已成功完成,但是当我从服务器发送时,我收到以下错误:
In the console requests have completed successfully, but when I send from the server I get the following error:
403: {
"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."
}
}
构造查询的参数检查..请求继续:
Parameters to construct the query checked.. the request goes on:
"https://www.googleapis.com/calendar/v3/freeBusy?key=my_key"
pass parameters: "{"items":[{"id":"calendar_id@group.calendar.google.com"}],"timeMax":"2014-04-09T00:00:00+01:00","timeMin":"2014-01-09T00:00:00+01:00","timeZone":"Europe/Berlin"}"
我在哪里可以看到错误是什么?
Where can I see what the error is?
这个帮助中是否有Billing(目前关闭Billing is not enabled")?
Whether in this help Billing (at the moment it is turned off "Billing is not enabled")?
===========================更新:问题就这样解决了(如萨满教):我刚刚在google api中创建了一个新项目,下一个选项卡APIs&auth->Credentials"我添加到项目Web 应用程序的客户端 ID"中,当您创建时立即指出重定向 URIs",当您创建时会自动生成浏览器应用程序的密钥",它可以与任何主机一起使用).在这些步骤之后,我指向一个网站创建的设置和请求.
========================== UPDATED: The problem was resolved so (like shamanism): I just created a new project in the google api, next tab "APIs&auth->Credentials" I added to the project "Client ID for web application", when you create immediately pointed out "Redirect URIs" when you create is automatically generated "Key for browser applications"that can work with any host). After these steps, I point to a website created settings and requests are.
发送请求以使用 drupal 和模块:gauth 和 gcal(使用 http://code.google.com/p/google-api-php-client/).
To send requests to use drupal and modules: gauth and gcal (which uses http://code.google.com/p/google-api-php-client/).
推荐答案
我遇到了完全相同的错误(Google Glass Mirror API 除外).添加帐单信息并将 http/https 添加到我的重定向 URL 也无济于事.
I was getting the exact same error (except with the Google Glass Mirror API). Adding billing information and adding both http/https to my redirect URL didn't help either.
显然,当您同时提供 OAuth2 凭据和 API 密钥时,Google API 会出现异常行为!解决方案(如果您使用的是适用于 PHP 的 Google API 客户端库)只需从您的代码中删除以下内容:
Apparently Google APIs have been known to misbehave when you provide both OAuth2 credentials and an API Key! The solution (if you are using the Google APIs Client Library for PHP) is to simply remove the following from your code:
$client->setDeveloperKey($key);
希望这会有所帮助.
这篇关于403 错误消息:访问未配置.请使用 Google Developers Console 为您的项目激活 API的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:403 错误消息:访问未配置.请使用 Google Developers Console 为您的项目激活 API


基础教程推荐
- 在PHP中根据W3C规范Unicode 2022-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- 如何替换eregi() 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01