Is there a callback or another way to track whether or not someone successfully shared something using the share button?
+1
A:
Are you using FB.ui?
As it says right there in the docs
function(response) {
if (response && response.post_id) {
alert('Post was published.');
} else {
alert('Post was not published.');
}
}
Peter Bailey
2010-07-29 18:49:29
I was using the simple social plug in FBML code..I checked the JS SDK method u mentioned above and it seems great.. The only prob am seeing now is - if I use stream.share example its returning the response as undefined always ( http://forum.developers.facebook.com/viewtopic.php?pid=252362 ).. strem.publish work excellent though.. can you plz tell me wat is the difference between those methods and is there any restriction in using strem.publish method.
Anz
2010-08-07 08:47:43
We have implemented the stream.publis method successfully.. Thanks.
Anz
2010-08-08 09:39:16