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?
show_errorwith valuetrueto 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