我在 Notion.so 上创建了一个集成
我使用以下 URL Add to Notion获得了临时 OAuth 代码
这个上面的 URL,在从 Notion UI 授权之后,
XXXXXXX-XXXXXXX
现在使用上面步骤中的代码给我下面的代码来获取授权代码
POST https://api.notion.com/v1/oauth/token HTTP/1.1
Authorization: Basic XXXXXXXOnNlY3JldF9DeXp0d1A0TVNLZkZIY0XXXXXXXXX
Content-Type: application/json
Content-Length: 164
{
"grant_type": "authorization_code",
"code": "XXXXXX-XXXXX",
"redirect_uri": "http://localhost:8080/api/notion/auth/callback"
}
这个回应在
{
"error": "invalid_grant"
}
我错过了什么?
提前致谢!