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 add a facebook share on my site and to check whether users share or not. Below is my code.

<script src="http://connect.facebook.net/en_US/all.js"></script>
<input type="button"
  onclick="share_me(); return false;"
  value="Share"
/>

javascript:

FB.init({appId:365897140152061 ,status: true, cookie: true});
function share_me() {

FB.ui({
  method: 'feed',
  app_id: '365897140152061',
  link: 'https://developers.facebook.com/docs/reference/dialogs/',
  picture: 'http://fbrell.com/f8.jpg',
  name: 'Facebook Dialogs',
  caption: 'Reference documentation',
  description: 'Using%20Dialogs%20to%20interact%20with%20users.',
  message: 'thanks for visting'
},
function(response){
  if(response && response.post_id) {
    self.location.href = 'http://www.google.com'
  }
  else {
    self.location.href = 'http://www.yahoo.com'
  }
});
}

When I share I get a message that an error occurred: Please try again later. How can I get rid of the error?

share|improve this question
Try adding he parameter show_error with value true to your FB.ui parameters – that should give you a more detailed explanation on the error. See: developers.facebook.com/docs/reference/dialogs – CBroe Sep 27 '12 at 8:24
Thanks CBroe. Do I need to live my app in order to use this function? because I am still in a testing mode before i proceed my development. thanks a lot for your reply.. – vincentlkl Sep 27 '12 at 8:55
Should be possible to use the dialog when the app is still in sandbox mode, AFAIK – if the user you’re testing with is admin or test user for this app. – CBroe Sep 27 '12 at 9:10
okok thanks a lot =) will look through it again.. – vincentlkl Sep 27 '12 at 9:38
i got this error and trying to solve but seems to be no luck. API Error Code: 191 API Error Description: The specified URL is not owned by the application Error Message: redirect_uri is not owned by the application. – vincentlkl Oct 2 '12 at 2:41

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.