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've just set up a Facebook Registration plugin here http://www.lexpressproperty.com/en/register.

I works like a charm but I encounter the following issue: whenever a user wants to logout (using the "x" next to his profile), he gets the following message:

Unable to load the registration form for . You may have previously blocked this app on Facebook. Go to your Facebook privacy settings to unblock this app. (Error: Invalid 'client_id'.)"

If the user then refreshes the page, the form is displayed correctly.

share|improve this question

2 Answers

Solution is in sandbox status

I also had the same issue, really frustrating. But it was false alarm. Above solution worked like a charm.

share|improve this answer
Thanks, but this is not a problem with sandbox, as you can register if you refresh the page after logging out. By the way, the app is not sandboxed. – Julien Tessier Aug 23 '12 at 14:36
May be the fbml control that you use have some issues. Because if the user initially not logged in to Facebook and access your page, then its empty, if we try to logging in from the link listed in that page, then it goes to the same error page. See my answer with sample code that I used. – Sabo Aug 24 '12 at 6:55

I used the following, it works fine in all scenarios. Try this out. Note that you need to have a live url for the redirect_uri field in the same app domain specified in the Facebook app config.

<iframe src="https://www.facebook.com/plugins/registration?client_id=999999999999&redirect_uri=@ConfigCaller.redirectURI&fields=name,birthday,gender,location,email,first_name,last_name"
        scrolling="auto"
        frameborder="no"
        style="border:none"
        allowTransparency="true"
        width="100%"
        height="390"></iframe>
share|improve this answer
Thanks, it won't logout with this code: lexpressproperty.com/en/register/pro?mode=iframe – Julien Tessier Aug 27 '12 at 10:42

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.