在此次Uber API调用中:
curl -F 'client_secret=<CLIENT_SECRET>' \
-F 'client_id=<CLIENT_ID>' \
-F 'grant_type=authorization_code' \
-F 'redirect_uri=<REDIRECT_URI>' \
-F 'scope=profile' \
-F 'code=<AUTHORIZATION_CODE>' \
https://login.uber.com/oauth/v2/token
来自:https://developer.uber.com/docs/riders/references/api/v2/token-post
以前工作过,但现在我收到了这个错误:
{
"error": "invalid_request"
}
我在哪里可以找到更多有关它的详细信息? 至少知道哪个参数错误或无效?