我正在尝试将Podio OAuth2身份验证与aspnet core 2.0应用程序集成在一起。但是,当我使用以下形式发布此代码时,我可以得到带有代码和状态的响应:
grant_type=authorization_code&client_id={my app's client_id from the API Keys page}&redirect_uri=http%3A%2F%2Flocalhost%3A5000%2Fpodio-oauth&client_secret={my client_secret from the API Keys page}&code={the code I received back from podio}
我总是收到:
{
"error_parameters": {},
"error_detail":"oauth.code.invalid",
"error_propagate":true,
"request": {
"url":"http://api.podio.com/oauth/token",
"query_string":"",
"method":"POST"
},
"error_description":"Sorry, your OAuth code is invalid.",
"error":"invalid_grant"
}
您知道我在做错什么还是在Podio方面不起作用吗?
谢谢。