当我将用户的浏览器重定向到redirect_uri
参数指定的URL时:
https://oauth-redirect.googleusercontent.com/r/YOUR_PROJECT_ID?code=AUTHORIZATION_CODE&state=STATE_STRING
令牌交换请求包括以下参数:
但是我收到grant_type,code,redirect_uri
。
resRedirectUri = "https://oauth-redirect.googleusercontent.com/r/YOUR_PROJECT_ID?code=AUTHORIZATION_CODE&state=STATE_STRING"
res.redirect(resRedirectUri);
app.post("/agentfns/rootoken", (req, res, next) => {
console.log("clientId,ClientSecret",Client_id,Client_secret);
}
为什么Client_id
和Client_secret
未定义?