1

在这里我得到了一个和上一个网址,但试图与URL访问下一个页面时,我得到错误的分页在谷歌分析报告

URL = https://www.googleapis.com/analytics/v3/data/ga?ids=ga:85914642&dimensions=ga:pagePath,ga:date&metrics=ga:pageviews,ga:uniquePageviews,ga:sessionDuration,ga:bounceRate,ga:exits&sort=-ga:pageViews&filters=ga:pageViews%3C%3D10&start-date=7daysAgo&end-date=today&start-index=11&max-results=10

Error: {"error":{"errors":[{"domain":"global","reason":"required","message":"Login Required","locationType":"header","location":"Authorization"}],"code":401,"message":"Login Required"}}

public function getPaginationInfo(&$results) { 
     $client = new Google_Client(); 
     if(isset($_SESSION['access_token'])){ 
      $client->setAccessToken($_SESSION['access_token']); 
     } 
     // Create an authorized analytics service object. 
     $analytics = new Google_Service_Analytics($client); 

     // Get the first view (profile) id for the authorized user. 
     $profile = $this->getFirstProfileId($analytics); 

     // Get the results from the Core Reporting API and print the results. 
     $this->results = $this->getResults($analytics, $profile); 
     var_dump($this->results); 

     $html = <<<HTML 
     <pre> 
     Items per page = {$this->results->getItemsPerPage()} 
     Total results = {$this->results->getTotalResults()} 
     Previous Link = {$this->results->getPreviousLink()} 
     Next Link  = {$this->results->getNextLink()} 
     </pre> 
HTML; 

      print $html; 
     } 

我也想知道当前页码,有没有任何功能?

+0

[Google analytics API分页当前页码和下一页认证]的可能重复(http://stackoverflow.com/questions/34089788/google-analytics-api-pagination-current-page-number-and-nextpage-authentication ) –

回答

0

您需要添加accesss_token参数:&access_token=ya29.AKDF.....您应该能够从您的授权客户端对象得到它:

$token = $client->getAccessToken(); 

然后此令牌附加到下一个页面的链接。

$this->results->getPreviousLink() . "&access_token=" . $token 

然后链接应该被认证。

+0

您仍然需要将访问令牌添加到下一个和上一个链接。 – Matt

+0

我试着通过'$ this-> results-> getPreviousLink()。 '&的access_token ='。 $ _SESSION ['access_token']'但不工作。 –