Google Access Token Empty

时间:2015-12-08 03:15:57

标签: php codeigniter google-api

我尝试过codeigniter。

下面我把这段代码放在一个构造

$this->google = new Google_Client();
$this->google->setClientId(GOOGLEID);
$this->google->setClientSecret(GOOGLESECRET);
$this->google->setDeveloperKey(GOOGLEAPIKEY);

$objOAuthService = new Google_Service_Oauth2($this->google);

然后在方法1中我把下面的

$this->google->setRedirectUri(site_url('auth/google-login?'));
$this->google->addScope("email");
$this->google->addScope("profile");
$data['content_data']['google_login_url'] = $this->google->createAuthUrl();
$this->load->view("test", $data);

然后在方法2中我把下面的

if (isset($_GET['code'])) {
    $this->google->authenticate($_GET['code']);
    $token = $this->google->getRefreshToken();
    echo $token;
}

你可以看到我试图打印$ token但它是空的。 我的问题是为什么它是空的?

编辑:

echo $this->google->getAccessToken();

即使getAccessToken返回空。

2 个答案:

答案 0 :(得分:0)

以下是我在Laravel和Codeigniter中使用的工作代码。

// Initial config
$client = new Google_Client();
$client->setApplicationName(APP_NAME);
$client->setClientId(CLIENT_ID);
$client->setClientSecret(CLIENT_SECRET);
$client->setRedirectUri(REDIRECT_URI);
$client->setScopes(array(SCOPE_A));

// To retrieve refresh token forcefully
// This will ask for permission everytime.
$client->setApprovalPrompt('force');
$client->setAccessType('offline');


// Return url data part
if (isset($_GET['code'])) {

    // Log the user in
    $client->authenticate($_GET['code']);

    // Get acess token and refresh token
    $getAccesToken = $client->getAccessToken();
    $getRefreshToken = $client->getRefreshToken();

} 
else 
{
    // Return to login
    $googleAuthUrl = $client->createAuthUrl();
    // Redirect user to authentication URI

}

我希望这会有所帮助。

答案 1 :(得分:0)

我刚修好了。

我的解决方案是我的构造

$this->google = new Google_Client();
$this->google->setClientId(GOOGLEID);
$this->google->setClientSecret(GOOGLESECRET);
$this->google->setDeveloperKey(GOOGLEAPIKEY);

$this->google->setRedirectUri(site_url('auth/google-login?'));
$this->google->addScope("email");
$this->google->addScope("profile");
方法1中的

我只有这个

$data['content_data']['google_login_url'] = $this->google->createAuthUrl();
$this->load->view("test", $data);

并且在方法2中我有这个

if (isset($_GET['code'])) {
    $this->google->authenticate($_GET['code']);
    $token = $this->google->getAccessToken();
    var_dump($token);
}

此处$ token已经具有值