我正在创建一个基于浏览器的应用程序,基于 php。我通过从 Google_Client() -> >createAuthUrl() 获得的 url 将用户发送到 google 权限页面。
然后,用户允许我请求的权限并被重定向回我的站点,在那里我使用查询参数(代码)生成访问令牌。设置 accesstoken 后,我尝试了一些 google drive api 调用,但无论我尝试使用什么 api 调用,调用总是失败 (401) Invalid Credentials。
在检查 google 正在使用的其余 url 时,我看到它总是返回以下内容:
{
"error": {
"errors": [
{
"domain": "global",
"reason": "internalError",
"message": "Internal Error"
}
],
"code": 500,
"message": "Internal Error"
}
}
这是我的代码:
require_once 'src/Google_Client.php';
require_once 'src/contrib/Google_DriveService.php';
require_once 'src/contrib/Google_Oauth2Service.php';
class Google_drive
{
var $array_values = array();
var $CI;
var $client;
public function __construct()
{
$this->CI = & get_instance();
$client = new Google_Client();
// Get your credentials from the APIs Console
$client->setClientId('12340XXXXX26.apps.googleusercontent.com');
$client->setClientSecret('4vJU1RVcXXXXXX71levO5wF-');
$client->setRedirectUri('http://test.elemental.co.za/drm/requestlists/google_drive');
$client->setScopes(array('https://www.googleapis.com/auth/drive','https://www.googleapis.com/auth/drive.file'));
$service = new Google_DriveService($client);
if (!$this->CI->input->get('code')) // (this is the query string parameter ?code=
{
redirect($client->createAuthUrl());
}
//Request authorization
$authCode = $this->CI->input->get('code'); // (this is the query string parameter ?code=
// Exchange authorization code for access token
$accessToken = $client->authenticate($authCode);
$client->setAccessToken($accessToken);
$files = $service->files->list(array())
}
}