Google云端硬盘OAuth2获取令牌

时间:2015-02-09 21:36:13

标签: php oauth google-drive-api google-oauth

我刚开始学习谷歌树游戏,我有一些问题。

  1. 如何使用登录链接登录?

    session_start();
    require_once 'api/src/Google/Client.php';
    require_once 'api/src/Google/Service/Drive.php';
    
    
    $drive = new Google_Client();
    
    $drive->setClientId('XXXXXXXX-hc0ap9uujjvqpsci9ceitqsrro1d8415.apps.googleusercontent.com'); // Client ID
    
    $drive->setClientSecret('XXXXXXXXXXX'); //Client Secret
    
    $drive->setRedirectUri($url);
    
    $drive->setScopes(array('https://www.googleapis.com/auth/drive'));
    
    
    $url = $drive->createAuthUrl();
    
  2. 如何获取access_token?

1 个答案:

答案 0 :(得分:0)

您将从$drive->createAuthUrl()获取登录Google的网址。 Google会将凭据(包括access_token)返回到重定向的URI。

我已经在GitHub中设置了一个关于在API中使用oAuth和Drive函数的简单注释回购。你可以在这里找到它:

https://github.com/numsu/google-drive-sdk-api-php-insert-file-parent-example

祝你学习好运! :)