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.

I am using facebook login through javascript SDK (fb.login). and when i was login through, sometimes it works properly but sometimes it continuously asking for email and password.

for example, i have enter email id and pwd in this window:

enter image description here

after that it continuously asking for email and password.

i have included this:

    <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">

    <script src="http://connect.facebook.net/en_US/all.js"></script>
<div id="fb-root"></div>
    <img src="<?= $this->baseUrl(); ?>/public/images/facebook_signup.jpg" onclick="fb_login();"/>
    <script>
    FB.init({appId: '061665c433986c406bbeda1b465350c1', status: true,
        cookie: true, xfbml: true});

    function fb_login()
    {
        FB.login(function(response)
            {
                if(response.session!=null)
                {
                    window.location.href="http://www.allindiaarchitects.com/registration";
                }
                },{perms:'email,user_birthday,offline_access,publish_stream,read_friendlists'});
    }

    </script>

Please anybody help me.

share|improve this question
Provide your code that you are using for login – Awais Qarni May 20 '11 at 5:54

1 Answer

Try this:

<div id="fb-root">
    <img src="<?= $this->baseUrl(); ?>/public/images/facebook_signup.jpg" onclick="fb_login();"/>
</div>

If it doesn't work, try this:

<div id="fb-root">
    <fb:login-button autologoutlink="true" size="medium" background="white" length="short"></fb:login-button>
</div>
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.