3

我花了 2 天时间使用服务帐户处理各种 Drive API 教程。

我最近使用的教程是这个:https ://developers.google.com/drive/delegation

尝试上传文件时,我不断收到此错误:

ProtocolException was unhandled
Error occurred while sending a direct message or getting the response.

我安装了Fiddler并确定何时POST /o/oauth2/token返回:

{
    "error:"invalid_grant"
}

我已经三重检查了我的应用程序范围。

我究竟做错了什么?

4

1 回答 1

5

原来我的服务器上的时间快了 5 分钟。

当我更正服务器上的时间时,一切正常。

我相信这会导致某种身份验证问题,因为 Google 服务器时间不接受来自我的服务器的请求的时间戳或类似的东西......

(希望这可以节省一些人的头)

于 2013-02-21T18:37:23.603 回答