我正在编写一个需要访问 Google 任务 API 的 Java 客户端应用程序。我正在按照页面https://developers.google.com/accounts/docs/OAuth2InstalledApp的说明进行操作,并且我已经设法获得了授权码。但是,当我尝试获取访问令牌时,我不断收到错误 400“错误请求”。
我正在使用 Firefox 的海报插件进行测试。我向https://accounts.google.com/o/oauth2/token发送了一个帖子请求,内容如下:
code=<the-code-i-got-in-step1>&
client_id=1097620474561-gusvm8cq428h86r7pcum285cuffssncj.apps.googleusercontent.com&
client_secret=,my-client-secret>&
redirect_uri=hurn:ietf:wg:oauth:2.0:oob&
grant_type=authorization_code
关于我可能做错了什么的任何建议?