Can anyone help me to send message to facebook friends using graph api.
I tried
$response = $facebook->call_api("/me/feed", "post", "to=john","message=You have a Test message");
It's not working. I have the accesstoken of the user in my hand.only I am confused on sending process.
You can't send messages using a Facebook application. You used to be able to do that, but the (predictable?) colossal amount of abuse led to the revocation of this ability.
Provided Alice, your user, has given you the necessary extended permissions, you have the following options:
You could open the Send Dialog in a popup.
$parameters = array( 'app_id' => $facebook->getAppId(), 'to' => $facebookUserId, 'link' => 'http://google.nl/', 'redirect_uri' => 'http://my.app.url/callback' ); $url = 'http://www.facebook.com/dialog/send?'.http_build_query($parameters); echo '<script type="text/javascript">window.open('.json_encode($url).', ...
For detailed options see: https://developers.facebook.com/docs/reference/dialogs/send/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With