Facebook Send - How to find out who message recipients are - facebook

I'm building a site that I've integrated with FB Send. Is there any callback that will tell me who the messages were sent to if a user on my site uses FB Send?

At this time there is no callback from Facebook for the FB Send button you referenced. There is not currently any way to retrieve the list of recipients for which a user has just messaged via send button, sorry.

Related

Facebook apprequest (notification) is it possible? [duplicate]

As it is possible to post on users wall without the request dialog using FB.api('Id/feed...), is it possible to send users an apprequests through the FB.api? and not FB.ui(apprequests...).
Thank you for your answer. I really need help on this I have been looking around for weeks...
You can send apprequests from user to user and app to user.
The apprequests from user to user are initiated with the Requests dialog box
App to User Requests can be used to re-engage a user in your app and can only be sent to users that have installed the app. For example, notifying a user that something has changed since their last visit, "10 of your friends are now online".
You can post a apprequest for a user by issuing an HTTP POST request to /USER_ID/apprequests with the app's access_token.
It is currently not possible to send *apprequest*s without the dialog.

Need to send Email/Notification to Facebook User of iPhone app from server.

I have Facebook user's details Like FBid, Fb user name on my server data base. I want to send email/Notification of this user on Facebook. How can I achieve this. It is very easy to send this via my iPhone app because Facebook access token is on my device but I want to send notification via Server. Please let me know How can I send this. Thanks
What have you tried?
What I have already done : After R&D I found that "username#facebook.com" will work for send email to FB user, and it was working but after AWS setup its throwing mail bounce messages :(
http://www.facebook.com/help/224049364288051
How can I send email to a facebook friend using his facebook id via fql or graph api
Sending Email to #facebook

Sending application requests that appear in the left column on Facebook home page?

At the left column on facebook's home page, a notification from Facebook applications appears with a gray character, for example, "APPLICATION NAME [1]".
For example, Badoo app displays this type of notification when a friend has answered my question.
How do I display this notification for my own application?
Your English is great, hkweb. To send the user a "Notification", you must send a POST request to the user's /apprequests connection. You'll need a valid access_token for the user and this user must have "installed" your application before you can send them notifications like this OR use the Requests Dialog. Afterwards, it's as simple as sending a POST to:
https://graph.facebook.com/{USER_ID}/apprequests?access_token={ACCESS_TOKEN}
or
https://graph.facebook.com/me/apprequests?access_token={ACCESS_TOKEN}
The only required parameter to be sent is "message", but you can also send a JSON-encoded dictionary of parameters in the "data" parameter. I recommend you play with the API Graph Explorer. There you can send yourself apprequests with a POST, check your pending ones with a GET and clear pending requests with a DELETE request to
https://graph.facebook.com/{ID_OF_REQUEST_OBJECT}
If you're developing an application on Facebook (like a canvas app), you can make use of the Requests Dialog which makes sending the POST very easy and gives you a friend selector as well.
You can also get the user's pending apprequests by sending a GET request to the same object.

Sending Facebook apprequests without dialog

As it is possible to post on users wall without the request dialog using FB.api('Id/feed...), is it possible to send users an apprequests through the FB.api? and not FB.ui(apprequests...).
Thank you for your answer. I really need help on this I have been looking around for weeks...
You can send apprequests from user to user and app to user.
The apprequests from user to user are initiated with the Requests dialog box
App to User Requests can be used to re-engage a user in your app and can only be sent to users that have installed the app. For example, notifying a user that something has changed since their last visit, "10 of your friends are now online".
You can post a apprequest for a user by issuing an HTTP POST request to /USER_ID/apprequests with the app's access_token.
It is currently not possible to send *apprequest*s without the dialog.

how to send facebook Notification or message via its api?

please let me know how can i Send facebook Notification or message via its API through a facebook app?
You can use the Old REST API to send notifications to users who have authenticated your application. First you must request the "email" extended permission from the user, then you can use the notifications.sendEmail method to send them the notification.
I used this dialog to send message one my one. But had no luck to send message to facebook account successfully.
https://www.facebook.com/dialog/send?app_id=MY_APP_ID&name=Check This Website&to=MY_APPLICATIONS_USER_ID&link=MY_WEBSITE_LINK&redirect_uri=MY_APPLICATION_URL