YouTube Analytics API PHP: использование ограничивает доступ не настроен

Я использую [Google Analytics API PHP] от wanze. Я смог настроить аутентификацию (используя только веб-аутентификацию) и все, и я сохранил токен в сеансе. На другой странице я использую этот код, чтобы найти все учетные записи, с которыми вошел пользователь.

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
(
)

Я вижу во многих местах, что мне нужно удалить или установить все ссылки в разделе «Рефералы» в консоли, но я не могу найти это в новой или старой консоли. Если он там есть, и я не могу его найти, не могли бы вы дать мне URL или скриншот?

Кроме того, это все API, которые я установил для этого проекта:

Список API

Заранее спасибо,

Бен

Кроме того, дайте мне знать, если вам нужно больше деталей!

2

Решение

Привет (извините, это был очень глупый вопрос),

Что вам нужно сделать, это добавить в свой список API «Google Analytics» в Консоль разработчиков.

2

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]