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 trying to use javascript sdk for rendering a XFBML form on our site and i keep getting

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'.)

my app is registered and with correct id.

the code looks like is:

<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId      : '118446328234891', // App ID
      channelUrl : '//www.sakshum.org/channel.html', // Channel File
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });

    // Additional initialization code here
  };

  // Load the SDK Asynchronously
  (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>
<script src="https://connect.facebook.net/en_US/all.js#appId=118446328234891&xfbml=1"></script>

<fb:registration fields="name,birthday,gender,location,email" redirect-uri="http%3A%2F%2Fwww.sakshum.org%2FFbValidation" width="530">
</fb:registration>

just to add on if i use non xfbml version using just iframe then all works fine.

share|improve this question
1  
And is the user logged in currently able to see app 118446328234891? it's not blocked or anything, is it? – Igy Sep 6 '12 at 23:56
how do i verify that? – Vik Sep 7 '12 at 0:27
i went to app center from another user account and can find this app in the app center. so i will assume that it is not blocked. any other advise? – Vik Sep 7 '12 at 3:34
anyone for any other suggestions on this? – Vik Sep 7 '12 at 18:03

2 Answers

up vote 1 down vote accepted

Looks like the issue was using encoded redirect_uri. changing it to normal url fixed the issue.

share|improve this answer

The redirect-uri must match with the setting "Site URL" in your Facebook app.

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.