我正在尝试使用Google提供的代码在我的代码中动态设置包含路径:
set_include_path(get_include_path() . PATH_SEPARATOR . '/path/to/google-api-php-client/src');
我仍然相对于PHP而言,我将假设/path/to/
需要更改为其他内容。我已经尝试将其设置为/home/expiredf/public_html/google-api-php-client/src
但是这不起作用。
有人可以帮助我完成这个HelloAnalyticsAPI.php教程吗?
在任何人将其他问题与答案联系起来之前,我已经浏览了大部分问题,并试图实施他们的解决方案,但他们并不适合我,因为他们似乎是在考虑更多PHP知识的情况下解释的。感谢基本和愚蠢的答案。
答案 0 :(得分:0)
您问题的最佳答案是说不要使用该教程。该教程非常过时,使用旧的PHP-client-Lib,已向Google报告。
PHP客户端库
可以在Github上找到最新版本的Google PHP客户端库。 google-api-php-client只要有任何更改,此客户端lib就会定期更新。您需要将整个src/Google目录复制到应用程序的目录中。除非你真的知道自己在做什么,否则我不建议只拿你需要的文件。
<强>的oauth2 强>
Oauth2有3个步骤,这就是它被称为3腿认证的原因。在第一步中,您要求用户授予您访问权限,第二步是用户为您提供访问权限,第三步和最后一步是您交换用户提供的访问数据的权限。
<?php
require_once 'Google/Client.php';
require_once 'Google/Service/Analytics.php';
session_start();
$client = new Google_Client();
$client->setApplicationName("Client_Library_Examples");
$client->setDeveloperKey("{devkey}");
$client->setClientId('{clientid}.apps.googleusercontent.com');
$client->setClientSecret('{clientsecret}');
$client->setRedirectUri('http://www.daimto.com/Tutorials/PHP/Oauth2.php');
$client->setScopes(array('https://www.googleapis.com/auth/analytics.readonly'));
//For loging out.
if ($_GET['logout'] == "1") {
unset($_SESSION['token']);
}
// Step 2: The user accepted your access now you need to exchange it.
if (isset($_GET['code'])) {
$client->authenticate($_GET['code']);
$_SESSION['token'] = $client->getAccessToken();
$redirect = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
header('Location: ' . filter_var($redirect, FILTER_SANITIZE_URL));
}
// Step 1: The user has not authenticated we give them a link to login
if (!$client->getAccessToken() && !isset($_SESSION['token'])) {
$authUrl = $client->createAuthUrl();
print "<a class='login' href='$authUrl'>Connect Me!</a>";
}
// Step 3: We have access we can now create our service
if (isset($_SESSION['token'])) {
print "<a class='logout' href='".$_SERVER['PHP_SELF']."?logout=1'>LogOut</a><br>";
$client->setAccessToken($_SESSION['token']);
$service = new Google_Service_Analytics($client);
// request user accounts
$accounts = $service->management_accountSummaries->listManagementAccountSummaries();
foreach ($accounts->getItems() as $item) {
echo "Account: ",$item['name'], " " , $item['id'], "<br /> \n";
foreach($item->getWebProperties() as $wp) {
echo ' WebProperty: ' ,$wp['name'], " " , $wp['id'], "<br /> \n";
$views = $wp->getProfiles();
if (!is_null($views)) {
foreach($wp->getProfiles() as $view) {
// echo ' View: ' ,$view['name'], " " , $view['id'], "<br /> \n";
}
}
}
} // closes account summaries
}
print "<br><br><br>";
print "Access from google: " . $_SESSION['token'];
?>
此代码直接从我的教程中删除:Google Oauth2 PHP - Google Analytics API教程保持最新。如果这篇文章是旧的,你可能想知道代码是否有任何变化。