Johan
Johan

Reputation: 11

Facebook app: send message to users

I would like to know if theres a way to make my app send any type of message/notification to a user with a certain uid. Anything but posting to the users wall will be ok.

Upvotes: 1

Views: 5085

Answers (2)

Saurabh Kumar
Saurabh Kumar

Reputation: 5945

Did you gave Send Dialog a try, here is the link: https://developers.facebook.com/docs/reference/dialogs/send/

The only limitation is you have to have a url along with. The notification goes in the message timeline. Basically it is meant for sending content, not bare messages.

Upvotes: 0

bkaid
bkaid

Reputation: 52073

You can request the email extended permission to get the current user's email address and you can email them that way. To send a message to a users friends (without posting to their wall), the only current option is the requests dialog in the javascript sdk.

Upvotes: 2

Related Questions