我试图通过facebook api重新请求拒绝许可(我在没有sdk的情况下手动完成所有操作)。我在文档中读到,我必须使用 auth_Type = rerequest 来重新获取失去的权限。
所以现在我做了以下请求:
https://graph.facebook.com/oauth/authorize?response_type=code&client_id={CLIENT_ID}&redirect_uri={REDIRECT_URI}&scope=email&auth_type=rerequest
我收到以下错误:
{
error: {
message: "",
type: "OAuthException",
code: 100,
fbtrace_id: "FDSHkpgT7iP",
}
}
我做错了什么?