8

I saw your post about sending messages to your Facebook friends via the IOS Facebook sdk,

I was wondering if there is a way to send a private message as well to these friends.

If not, is sending messages to your Facebook friends still supported from your previous post at:

iOS Development: How can I get a Facebook wall post to show in the friend's news feed?

If so let me know, thank you in advance

Community
  • 1
  • 1
joshua
  • 81
  • 1
  • 1
  • 3
  • Absolutely impossible from Jan 2013, completely banned by Facebook https://developers.facebook.com/blog/post/2012/10/10/growing-quality-apps-with-open-graph/ You can only **send an email** (ie, private message) as explained by KLEW below. – Fattie Oct 23 '13 at 10:58

3 Answers3

12

It is possible to send a private message via facebook- just not with the SDK. You can get the user's 'username' (ie. http://www.facebook.com/username) and you can send them an email via your app to 'username@facebook.com'.

Shapow!

Major bonus: attach a file and it will be included in the facebook message.

One caveat: the email will not reach the recipient's message inbox unless the sender's email address is affiliated with a valid facebook user account. I would imagine this is in place to thwart spam.

KLEW
  • 166
  • 1
  • 7
1

No, it is not possible to send private messages using the Graph API.

Yes, it is still possible to post to a friend's wall. I just checked it out just now using the graph API Explorer tool: http://developers.facebook.com/tools/explorer. I used /friendId/feed with an HTTP post of "message" = "testing" and my friend confirmed they saw it on their stream.

DMCS
  • 31,720
  • 14
  • 71
  • 104
  • 1
    In fact, it is now not possible - it was **deprecated by Facebook January, 2013**: https://developers.facebook.com/blog/post/2012/10/10/growing-quality-apps-with-open-graph/ – Fattie Oct 21 '13 at 15:24
0
let messageDialouge = MessageDialog.init(content: <ShareContent>, delegate: nil)
   if messageDialouge.canShow {
        messageDialouge.show()
    }

And do add fb-messenger-share-api inside the LSApplicationQueriesSchemes in info.plist

Ravi B
  • 1,574
  • 2
  • 14
  • 31
Lizan
  • 1