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.

This is the rendered login page for the tutorial here
The login button does not appear in IE9. Why? I must mention that I run it in IIS7 not IIS express, if it metters Login

<h2>Login using Facebook</h2>

<div>
    <fb:login-button></fb:login-button>
</div>

<div id="fb-root">
</div>
<script src="http://connect.facebook.net/en_US/all.js" type="text/javascript"></script>
<script type="text/javascript"> 
    FB.init({
        appId: '120795328019415', cookie: true,
        status: true, xfbml: true
    });
    FB.Event.subscribe('auth.login', function (response) {
        window.location.reload();
    });
</script></body>
</html>
share|improve this question

1 Answer

up vote 0 down vote accepted

Make sure the site url in your app settings matches exactly. The redirect URL needs to be valid as well. It sould point to a URL on your site domain.

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.