By sending a private message to your friends via the Facebook iOS SDK

I saw your message about sending messages to my friends from Facebook via sdk Facebook iOS,

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

If not, sends messages to his friends on Facebook, which are still supported from your previous message:

iOS Development: how can I get a wall post on Facebook to show a friend in the news feed?

If yes, let me know, thanks in advance

+8
ios facebook facebook-friends facebook-messages
source share
3 answers

You can send a private message via facebook - just not using the SDK. You can get a user name (i.e. http://www.facebook.com/username ), and you can send them an email using your application to username@facebook.com.

Shapow!

The main bonus: attach the file, and it will be included in the message on facebook.

One caveat: the email will not get to the recipient's mailbox if the sender's email address is not associated with a valid facebook user account. I would suggest that it is in place to thwart spam.

+12
source share

No, sending private messages using the Graph API is not possible.

Yes, you can still send a friend to the wall. I just checked it now using the API chart API tool: http://developers.facebook.com/tools/explorer . I used / friendId / feed with the HTTP message "message" = "testing", and my friend confirmed that they saw it in their stream.

+1
source share
let messageDialouge = MessageDialog.init(content: <ShareContent>, delegate: nil) if messageDialouge.canShow { messageDialouge.show() } 

And add fb-messenger-share-api inside LSApplicationQueriesSchemes in LSApplicationQueriesSchemes

0
source share

All Articles