我创建了两个名为s1
和的 servlet s2
。
s1
将请求转发到
https://graph.facebook.com/oauth/authorize?client_id=41050677*****&redirect_uri=http://localhost:8080/fb10/s2& scope=publish_stream,create_event
在s2
我获取代码并将其重定向到 facebook 成功页面:
https://graph.facebook.com/oauth/access_token?client_id=410506779*********&redirect_uri=http://www.facebook.com/connect/login_success.html& client_secret=22049dc145289c2dd7**************&code=(extract code form url)
但我收到一个错误:
{
"error": {
"message": "Error validating verification code.",
"type": "OAuthException",
"code": 100
}
}
这是如何引起的,我该如何解决?我已经用于responce.sendredirect();
重定向。