Error obtained is An error occurred, please try again later
I created new facebook app and go the APP ID. I entered domain name as blogspot.in and redirect URL as my blog
I then used the below code from
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'YOUR_APP_ID',
status : true,
cookie : true,
xfbml : true,
oauth : true,
});
};
(function(d){
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}(document));
</script>
<div class="fb-login-button">Login with Facebook</div>
I entered this code in my blog using Javascript/HTML gadget and everything works fine till logging in and allowing the app, after that i'm getting the error.
I even tried this using localhost by changing the 127.0.0.1 to local.localhost in hosts file but even in that i'm getting the same error. i went through many stackoverflow posts and nothing helped.
My questions are;
- can we use login using facebook in blogger
- If so, whats the problem and how to correct it?
Imp: You can view the error by going to my blog and in right side you can see login with facebook option(Don't worry nothing happens by logging in, I'm just using it for testing)