ローカルマシンで開発しようとしています。FacebookサイトのURLをに設定しました
http://localhost:8000
私のログインコード:
function tryFBLogin() {
FB.login(function(response) {
if (response.authResponse) {
console.log("User is connected to the application.");
var accessToken = response.authResponse.accessToken;
return http.HttpResponseRedirect(reverse('http://localhost:8000/page/'))
} else {
console.log("Something messed up in facebook login");
}
});
}
ログインバットをクリックすると、次のエラーメッセージが表示されます。
API Error Code: 191
API Error Description: The specified URL is not owned by the application
Error Message: Invalid redirect_uri: Given URL is not allowed by the Application configuration.