Post iOS Facebook SDK on friend’s wall using standard dialog

Is it possible to post a friend on the wall using the standard feed dialog, or do I need to create my own dialog for this?

UPDATE: I know that you can send a friend to the wall directly with requestWithGraphPath. But I'm trying to figure out if I can use the facebook dialog for this. For example, Draw Something seems to do just that (see screenshot below). However, I tried sending "target_id" as well as "to" and none of them work. Does anyone know how to do this? enter image description here

+4
source share
3 answers

I have found a solution. Just add the "to" parameter with the ID of the user you want to send the message to. I tested it.

+3
source

UPDATED RESPONSE:

facebook announced that by 6.06.2013 it will not be possible to publish the wall of friends through GraphAPI

https://developers.facebook.com/roadmap/#february-2013

Removing the ability to post to friends through the Graph API We will remove the ability to post to friends' walls through the Graph API. In particular, messages against [user_id] / feed, where [user_id] is different from the session user, or stream.publish calls, where the target_id user is different from the session user, does not work. if you want people to send messages to the schedule of their friends, call. Stories that include friends through the user, tagging or action tags will be displayed on the friends timeline (assuming the friend approves the tag). See this blog post for more information.

+2
source

It looks like this is very similar to iOS Development: how can I get Facebook shorthand to show in a friend's news feed?

Maybe this will help, as I think @kgutteridge has the correct answer.

0
source

All Articles