概念 API OAuth 不工作`无效的客户端`

Notion API OAuth Not working `invalid client`

我已尝试设置 Notion OAuth,在 postman 上一切正常,但在我的应用程序上却不行。

我尝试了很多方法,这是迄今为止我最后一次实现。

router
.get("/notion/authorize", async (req : Request, res: Response) => { 
    let redirectURL = `${process.env.NOTION_AUTH_URL}?owner=user&client_id=${process.env.NOTION_CLIENT_ID}&response_type=code&redirect_uri=${encodeURI(process.env.NOTION_REDIRECT_URI)}`
    res.redirect(redirectURL)
})
.get("/notion/callback", async (req: Request<any,any, any, {code : string } >, res: Response) => {
    try {
        const {code} = req.query;
        console.log(code)
        if(!code) {
            throw new Error("Code is required from notion")
        }
        const response = await axios.post('https://api.notion.com/v1/oauth/token', { 
            data:JSON.stringify({
                "grant_type":"authorization_code",
                "code":code,
                "redirect_uri": "http://localhost:9000/notion/callback"
            }),
            headers: {
            "Authorization": `Basic ${Buffer.from(`${process.env.NOTION_CLIENT_ID}:${process.env.NOTION_CLIENT_SECRET}`).toString('base64')}`,
            "Content-Type": "application/json",
            }
        
        })
        const  {access_token, bot_id, workspace_id, workspace_name} =response.data;
        
        //.. more code

    }catch(err) {
        if(axios.isAxiosError(err)) {
            console.log(err.response.data, err.response.status)
        }
        return res.status(400).json({message: `Failed to register user ${err}`})
    }

    
})

我仍然认为这是错误 { error: 'invalid_client' } 401

是的,也检查了密钥和重定向 URI。

请帮我解决这个问题:)

看来你的header不对。检查字段授权是否与您在 postman.

中使用的值相同

另一件事是您的 post 请求。我觉得你搞砸了。 axios在使用request方法时可以带一个object,在使用post方法(Axios Documentation)时可以带3个参数(url,data,config)。在你的代码中,数据和 headers 在一起,应该分开在不同的 objects.