我是Google Analytics Api的新手。我刚刚开始处理一个小项目,我想从API中提取数据并使用一个Google Analytics帐户在每个用户的信息中心上显示。我尝试按照谷歌提供的教程进行调整,并在需要时根据库的更新进行调整。
我正在开发基于codeigniter的平台,我能够创建一个Google客户端对象,并且还可以使用保存在数据库中的刷新令牌。我使用刷新令牌,以便在仪表板上提供数据,而无需每次都手动登录。
每次登录时都会出现访问令牌,我可以使用它来设置客户端访问令牌并创建Google Service Analytics对象($service = new Google_Service_Analytics($client);).
我正在打印服务,我可以看到客户端id,客户端密钥等以及传递给它的访问令牌;但其他像Google_Service_Analytics_DataGa_Resource
对象是空的(我不知道它们在这个特定的步骤是否应该这样?)。
当我尝试申请用户帐户时
$accounts = $analytics->management_accounts->listManagementAccounts();,
我得到一个黑屏,我的视图没有呈现。
我以前找不到遇到这样的问题,所以我有点困惑为什么会这样。我没有收到任何错误信息或任何可能指向我的原因或正确方向的信息。
注意:我确实设法通过JavaScript使用相同的凭据使其工作,但在这种情况下,它不是我想要的。我能够使用JS检索数据,在图表中显示数据等。我是新来的帖子,所以如果我需要做任何事情以便你更好地了解发生了什么,请告诉我。
我将不胜感激,我可以得到任何可能发生这种情况的迹象,或任何能让我走上正确道路的事情。
Codeigniter控制器类如下
// Step 1 - Load PHP Client Libraries
require_once APPPATH.'libraries/Google/Client.php';
require_once APPPATH.'libraries/Google/Analytics.php';
class GoogleTest extends CI_Controller {
public function index(){
$this->load->helper(array('url','form'));
$this->load->model('googleapi_model'); //used to get the refresh token
// Step 2 - Start a session to persist credentials
session_start();
// Step 3 - Create and configure a new client object
$client = new Google_Client();
$client->setApplicationName("API Project");
// Insert client id, api key, client secret, project scope and redirect uri
$client->setDeveloperKey("***************");
$client->setClientId('********************');
$client->setClientSecret('******************');
$client->setRedirectUri('****************');
$client->setScopes(array('https://www.googleapis.com/auth/analytics.readonly'));
// Check if refresh token exists, it is used to login users automatically & it is being generated only once when you login the first time from the created
// google analytics app, this will take precedence to Step 4 or 6 below ;
if(count($this->googleapi_model->getGoogleRefreshToken()) > 0){
$db_refresh_token = $this->googleapi_model->getGoogleRefreshToken();
$client->refreshToken($db_refresh_token[0]->refreshtoken);
$_SESSION['token'] = $client->getAccessToken();
}else{
if ($client->getAccessToken()) {
$token = $client->getAccessToken();
$authObj = json_decode($token);
$refreshToken = $authObj->refresh_token;
if(isset($refreshToken) && $refreshToken != null){
$this->googleapi_model->insertGoogleRefreshToken($refreshToken);
}
}
}
//Step 4 - Handle authorization flow from the server
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 5 - Retrieve and use stored credentials
if (isset($_SESSION['token'])) {
$client->setAccessToken($_SESSION['token']);
}
// Stept 6 - Either prompt the user to login or run the demo
if(!$client->getAccessToken()){
$authUrl = $client->createAuthUrl();
$this->data['auth'] = $authUrl;
}else{ //Create analytics service object
echo 'authenticated';
$analytics = new Google_Service_Analytics($client);
//TILL HERE MY CODE WORKS FINE, NO ERRORS, VIEW BEING RENDERED
$accounts = $analytics ->management_accountSummaries->listManagementAccountSummaries();
// $accounts = $analytics->management_accounts->listManagementAccounts();
echo '<pre>';
print_r($analytics);
echo '</pre>';
}
$this->data['content'] = '/public/dashboard/google_test';
$this->load->view('template/template', $this->data);
}
答案 0 :(得分:0)
确保您已登录API应用所在的Google帐户。 而且你点击了“连接”。 然后运行脚本。
同时启用错误报告(包括通知)