Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In a Facebook feed dialog is it possible to post a feed that lists friends that will get listed in the the post to the wall like

"...with Friend1, Friend1 at some place"

For instance in the this link

https://developers.facebook.com/docs/reference/dialogs/feed/

it shows an image "Post to Your Wall", can I also get it to list friends?

Is this possible or do I have to use Open graph or some other way?

share|improve this question

1 Answer

up vote 1 down vote accepted

You don't have to use Open Graph for this. Simply use the Feed Dialog with params:

tags: USER_ID1, USER_ID2,
place: 107905939237016 

The feed will be posted like:

"...with Friend1, Friend1 at some place"

share|improve this answer
tags and place does not seem to be supported. – stack Jan 9 at 0:55
Well it does. Why don't you give a try? – Shadowfax Jan 9 at 5:30
I did but it does not show up. You can see from the docs that it's not supported developers.facebook.com/docs/reference/dialogs/feed – stack Jan 10 at 6:33
I know that it's not mentioned in the docs, but it works and I am using this in many applications. – Shadowfax Jan 10 at 6:39
use me/feed with tags: VALID_USER_ID and place: VALID_PLACE_ID(say 109530785744253) – Shadowfax Jan 10 at 6:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.