我使用https://dev.freeagent.com/docs/oauth来实现API。
但无法获取访问令牌。我得到了代码,但获得访问令牌的过程我面临问题。
请求:
POST /v2/token_endpoint HTTP/1.1
Host: api.sandbox.freeagent.com
grant_type: authorization_code
code: 4/z7IBgRS-Pjx6y5-djE-uaRAjqeYleIdVCyjwiFgnfdg
redirect_uri: https://google.com
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
client_id: 3go0PEltpEHFFzEOdliIzQ
client_secret: OLefVbuT3LhEqpMh-2iq3w
Cache-Control: no-cache
Postman-Token: d47f46b7-9e1d-2969-8a40-53ee2120d5c2
响应:
{
"error": "invalid_request"
}
答案 0 :(得分:0)
它非常浓缩,并不完全清楚,但我跟着FreeAgent Quick Start Guide,最终能够获得访问令牌以及刷新令牌。
使用Google OAuth 2.0 Playground我能够验证自己并收到各种回复。
这一切都在他们的指南中。
祝你好运!