0

现在我知道这是 Internet 上的一个常见话题,尤其是 StackOverflow。但是我没有(或尚未看到)的是在会话中维护令牌的直接解决方案。

我正在使用适用于 PHP 的 Google APIs 客户端库

我的查询: 我有一个 index.php,我在其中使用 PHP 客户端库中的 Google_Oauth2Service 获取用户数据(例如姓名)。用户身份验证成功,一切顺利。现在我想使用 URL Shortening 服务,因此我有一个 short.php,我有代码可以尝试获取短 URL。有些如何这不起作用。

索引.php

//include google api files
require_once 'src/Google_Client.php';
require_once 'src/contrib/Google_Oauth2Service.php';
require_once 'src/contrib/Google_UrlshortenerService.php';

//start session
session_start();
$gClient = new Google_Client();
$gClient->setApplicationName('Test App');
$gClient->setClientId($google_client_id);
$gClient->setClientSecret($google_client_secret);
$gClient->setRedirectUri($google_redirect_url);
$gClient->setDeveloperKey($google_developer_key);

$google_oauthV2 = new Google_Oauth2Service($gClient);
....
....

在这里,我开始了会话并创建了 Google_Client 的对象。我已经声明了客户 ID、机密和所有其他详细信息。

然后我在成功的身份验证中获取访问令牌并将其存储在 Session 变量中,以便当我尝试从 short.php 获取短 url(使用 jQuery ajax)时,我可以使用现有的令牌。

$_SESSION['token'] = $gClient->getAccessToken();    
....

现在在shortcut.php

session_start();
require_once 'src/Google_Client.php';
require_once 'src/contrib/Google_Oauth2Service.php';
require_once 'src/contrib/Google_UrlshortenerService.php';

$gClient = new Google_Client();
$gClient->setApplicationName('Test App');
$gClient->setClientId($google_client_id);
$gClient->setClientSecret($google_client_secret);
$gClient->setRedirectUri($google_redirect_url);
$gClient->setDeveloperKey($google_developer_key);

....
if (isset($_SESSION['token']) && $_SESSION['token']) {

    // Set the access token from the session
    $gClient->setAccessToken($_SESSION['token']);   
    $url_service = new Google_UrlshortenerService($gClient);

    // Check if a URL has been passed
    if (isset($_GET['url'])) {  
            $url = new Google_Url();
        $url->longUrl = $_GET['url'];

        $shortURL = $url_service->url->insert($url);    
            ....

这是代码中断的确切行,$shortURL = $url_service->url->insert($url);我使用 Session 变量成功获取令牌并创建了成功的 URL 服务对象。但就在我调用 insert 方法时,它就失败了。

apache 错误日志

husain@innovate:~/myprojects/web$ tail -1 /var/log/apache2/error.log | sed -e 's/\\n/\n/g'
[Thu Mar 28 00:42:35 2013] [error] [client 127.0.0.1] PHP Fatal error:  Uncaught exception 'Google_ServiceException' with message 'Error calling POST https://www.googleapis.com/urlshortener/v1/url?key=AIzaSyCxfXP-xS-QYJw-7mM4SNG3EW9ryj_Oiv4: (401) Invalid Credentials' in /home/husain/myprojects/web/apps/src/io/Google_REST.php:66
Stack trace:
#0 /home/husain/myprojects/web/apps/src/io/Google_REST.php(36): Google_REST::decodeHttpResponse(Object(Google_HttpRequest))
#1 /home/husain/myprojects/web/apps/src/service/Google_ServiceResource.php(177): Google_REST::execute(Object(Google_HttpRequest))
#2 /home/husain/myprojects/web/apps/src/contrib/Google_UrlshortenerService.php(38): Google_ServiceResource->__call('insert', Array)
#3 /home/husain/myprojects/web/apps/shorten.php(44): Google_UrlServiceResource->insert(Object(Google_Url))
#4 {main}
  thrown in /home/husain/myprojects/web/apps/src/io/Google_REST.php on line 66

当我将 Google_Client 变量转储到 index.php 和 short.php 文件时,这就是我得到的。

索引.php

Google_Client Object
    (
    [scopes:protected] => Array

        (
        )

    [useObjects:protected] => 
    [services:protected] => Array
        (
            [oauth2] => Array
                (
                    [scope] => Array
                        (
                            [0] => https://www.googleapis.com/auth/userinfo.profile
                            [1] => https://www.googleapis.com/auth/userinfo.email
                        )

                )

        )

    [authenticated:Google_Client:private] => 
)

缩短.php

object(Google_Client)#1 (4) {
  ["scopes":protected]=>
  array(0) {
  }
  ["useObjects":protected]=>
  bool(false)
  ["services":protected]=>
  array(1) {
    ["urlshortener"]=>
    array(1) {
      ["scope"]=>
      string(44) "https://www.googleapis.com/auth/urlshortener"
    }
  }
  ["authenticated":"Google_Client":private]=>
  bool(false)
}

两者都不一样,所以我假设这里有什么不对劲的地方。请帮助或指导。

4

1 回答 1

0

身份验证时您没有请求 UrlShortener 范围,这就是它失败的原因。要添加范围,您可以在 index.php 中进行身份验证之前创建一个 UrlshortenerService,并传递相同的客户端实例,如下所示:

//start session
session_start();
$gClient = new Google_Client();
$gClient->setApplicationName('Test App');
$gClient->setClientId($google_client_id);
$gClient->setClientSecret($google_client_secret);
$gClient->setRedirectUri($google_redirect_url);
$gClient->setDeveloperKey($google_developer_key);

$google_oauthV2 = new Google_Oauth2Service($gClient);
$url_service = new Google_UrlshortenerService($gClient);

或者,您可以使用setScopes覆盖自动生成的范围

于 2013-03-28T19:25:45.190 回答