Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here is the code:

<div id="fb-root">
</div>
<script type="text/javascript">
    window.fbAsyncInit = function () {
        FB.init({
            appId: 'myappID',
            channelUrl: '//bijaybaniya.com.np/Home.aspx', 
            status: true, 
            cookie: true, 
            xfbml: true 
        });
        FB.getLoginStatus(function (response) {
            if (response.status === 'connected') {
                alert('ok');                   
            } else if (response.status === 'not_authorized') {
                alert('not_authorized');
            } else {
                alert('not_logged_in');
            }
        }, true);
    };
   (function (d) {
        var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
        if (d.getElementById(id)) { return; }

        js = d.createElement('script'); js.id = id; js.async = true;
        js.src = "//connect.facebook.net/en_US/all.js";
        ref.parentNode.insertBefore(js, ref);
   } (document));
</script>
<div class="fb-login-button" scope="email">
    Login with Facebook</div>

As montioned in https://developers.facebook.com/docs/reference/javascript/
I have tried to integrate facebook to my site. I got alogin button and pop up iframe too. After sucessfull login the iframe disappears.While reading over Internet i Found that FB.getLoginStatus() will check the status if ffacebook is connected or not. But this statement isnot executing.Please help me, where i have done wrong.

enter image description here

Thanks

share|improve this question
1  
First thing I notice is that the channelUrl your giving is nonsense, because that URL delivers just the home page of your site – please consult the docs for what the channel-URL is actually supposed to contain. – CBroe Aug 21 '12 at 12:34

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.