facebook - Is it possible to get the number of users messaged by the send dialog -
i'm wondering if possible retrieve number of people/friends messaged user when use 'send dialog' send specific friends messages (just number ok). i've been looking through documentation send dialog doesn't seem have information regarding this.(https://developers.facebook.com/docs/reference/dialogs/send/).
an alternative can think of @ stage use graph api, i'd need know messageid of message user sent.
yes can count first :you should know when user sent message check link below here sample test : http://www.fbrell.com/saved/d002a25a351e6b01b0526b2606b48750
<script> fb.ui({ method: 'send', name: 'people argue win', link: 'http://www.nytimes.com/2011/06/15/arts/people-argue-just-to-win-scholars-assert.html', }, function(response) { if (response) { alert('message sent.'); } else { alert('not sent'); } } ); </script>
second:use jquery & via jquery load ($().load('page.php'); can save sent message uid & of course can count every time want
Comments
Post a Comment