- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用wanze的[Google Analytics API PHP]。我能够设置身份验证(仅使用Web身份验证)以及所有内容,并将 token 存储在 session 中。在另一页上,我使用此代码查找用户登录时使用的所有帐户。
session_start();
include('GoogleAnalyticsAPI.class.php');
$ga = new GoogleAnalyticsAPI();
$ga->auth->setClientId('replaces'); // From the APIs console
$ga->auth->setClientSecret('replaces'); // From the APIs console
$ga->auth->setRedirectUri('replaced'); // Url to your app, must match one in the APIs console
// Get the Auth-Url
$url = $ga->auth->buildAuthUrl();
// Set the accessToken and Account-Id
$ga->setAccessToken($_SESSION['accessToken']);
$ga->setAccountId('ga:xxxxxxx');
// Load profiles
$profiles = $ga->getProfiles();
print_r($profiles);
$accounts = array();
foreach ($profiles['items'] as $item) {
$id = "ga:{$item['id']}";
$name = $item['name'];
$accounts[$id] = $name;
}
// Print out the Accounts with Id => Name. Save the Id (array-key) of the account you want to query data.
// See next chapter how to set the account-id.
print_r($accounts);
Array
(
[http_code] => 403
[error] => Array
(
[errors] => Array
(
[0] => Array
(
[domain] => usageLimits
[reason] => accessNotConfigured
[message] => Access Not Configured. The API is not enabled for your project, or there is a per-IP or per-Referer restriction configured on your API key and the request does not match these restrictions. Please use the Google Developers Console to update your configuration.
[extendedHelp] => https://console.developers.google.com
)
)
[code] => 403
[message] => Access Not Configured. The API is not enabled for your project, or there is a per-IP or per-Referer restriction configured on your API key and the request does not match these restrictions. Please use the Google Developers Console to update your configuration.
)
)
<br />
<b>Warning</b>: Invalid argument supplied for foreach() in <b>/home3/chalzzy/public_html/dashboard/dashboard.php</b> on line <b>21</b><br />
Array
(
)
最佳答案
嘿(对不起,这是一个非常愚蠢的问题),
您需要做的是将Developers Console中的“Analytics API”添加到您的API列表中。
关于php - YouTube Analytics API PHP:usageLimits accessNotConfigured,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27623007/
我正在尝试编写一个 AppEngine 应用程序,将 Google 文档写入 Google Drive,放入一组特定的文件夹并设置访问权限。我有这个与旧的 DocsList API 一起工作,但由于它
我从我的 Android 应用程序到 YouTube API 的调用得到了这个 JSON 响应: "error": { "errors": [ { "domain": "usageL
我正在使用wanze的[Google Analytics API PHP]。我能够设置身份验证(仅使用Web身份验证)以及所有内容,并将 token 存储在 session 中。在另一页上,我使用此代
我最近使用 Google 的自定义搜索 Api 注册了 key 。我达到了每日限额,因此注册了计费以启用更多请求。但是,我不断收到“usageLimit”错误。 在我的项目的计费设置中,我看到计费已启
我收到 403 错误: "domain": "usageLimits", "reason": "ipRefererBlocked", in YouTube Data API v.3 通过以下调用: h
我是一名优秀的程序员,十分优秀!