1
我已經創建了兩個名爲s1
和s2
的servlet。OAuthException:驗證驗證碼時出錯
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();
進行重定向。