谷歌表单API php curl获取请求



我正在使用google oauth v2 HTTP请求来获得工作正常的访问令牌,我正在获得令牌,但是当使用令牌访问电子表格时,我得到了403错误。

这是我正在使用的请求代码。

$get = 'https://sheets.googleapis.com/v4/spreadsheets/1bHKgQLgqB4PfjRUVPkYk5_L7aQOtZGOkhJbr_RFxQQY?access_token='.$access_token;
$ch = curl_init();  
curl_setopt($ch,CURLOPT_URL,$get);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET' );
curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
curl_setopt($ch,CURLOPT_HEADER, false); 
$output = curl_exec($ch);
curl_close($ch);
var_dump($output);

这是标题

的返回
HTTP/1.1 403 Forbidden
Vary: X-Origin
Vary: Referer
Content-Type: application/json; charset=UTF-8
Date: Tue, 15 Nov 2016 13:13:09 GMT
Server: ESF
Cache-Control: private
X-XSS-Protection: 1; mode=block
X-Frame-Options: SAMEORIGIN
Alt-Svc: quic=":443"; ma=2592000; v="36,35,34"
Accept-Ranges: none
Vary: Origin,Accept-Encoding
Transfer-Encoding: chunked
{
  "error": {
  "code": 403,
  "message": "The caller does not have permission",
  "status": "PERMISSION_DENIED"
  }
}

我已经尽力使表公开,但这对错误没有任何影响。错误也没有显示在API控制台上。

这些是我使用的作用域:

{
   "iss":"dev-537@mortgagetest-149109.iam.gserviceaccount.com",
   "scope":"https://www.googleapis.com/auth/drive    
    https://www.googleapis.com/auth/drive.readonly 
    https://www.googleapis.com/auth/spreadsheets 
    https://www.googleapis.com/auth/spreadsheets.readonly",
   "aud":"https://accounts.google.com/o/oauth2/token",
   "exp":'.($time+3600).',
   "iat":'.$time.'
}

我做错了什么?

问题解决了

我试图访问的工作表需要与我的客户端ID(电子邮件地址)共享右键单击谷歌驱动器中的工作表并与电子邮件地址共享。

为有同样问题的人发布这篇文章。

相关内容

  • 没有找到相关文章

最新更新