我正在创建一个基于浏览器的应用程序,基于php。我通过我从Google_Client()获得的网址将用户发送到Google权限页面 - > > createAuthUrl()
然后,用户允许我请求的权限并重定向回我的站点,在那里我使用查询参数(代码)生成一个accessstoken。在设置了accessstoken之后,我尝试了一些google驱动器api调用,但是无论我尝试使用什么api调用,调用总是失败(401)无效凭据。
当检查谷歌正在使用的其余网址时,我发现它总是会返回以下内容:
{
"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())
}
}
答案 0 :(得分:1)
好的,事实证明我错过了客户端 - > setDevolperKey('xxxxxxxxxxxxxxxxxxxxx'), 我似乎无法在googles文档中找到的东西,即使现在我知道它是什么。