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.

How can i enable sharing items on friends timeline like in picture. I am using Facebook sharer url like on demo which is on code below. Which parameter am i have to add this url to share on friends' timeline?

<a target="_blank" title="Share on Facebook" href="https://www.facebook.com/dialog/feed?%20app_id=<?php echo FACEBOOK_APP_ID;?>&%20link=<?php echo urlencode(url_cevir(APP_BASE_URL.'/index.php?view=s&artist='.$a[artistname].'&track='.$a[trackname]));?>&%20picture=<?php echo $a[pic_large];?>&%20name=<?php echo urlencode($a[artistname].' - '.$a[trackname]);?>&caption=cruisear.com&description=Discover new artists, listen new songs.&redirect_uri=<?php echo APP_BASE_URL; ?>"> <img src="img/face.gif" alt="share on facebook" /> </a>

enter image description here

share|improve this question
I can't test it right now, but i'm pretty sure that item is shared on friend's timeline by default (as in, it appears on timeline anyway) – Darvex Jan 11 at 13:36
No. I have added a demo fiddle on original post and below this comment. As you see on fiddle, default settings alow you to sent only to your timeline. jsfiddle.net/86EvD – You Can Do It Jan 11 at 14:01

2 Answers

In order to share something on friend's wall you need to add to parameter to your link:

https://www.facebook.com/dialog/feed?
app_id=458358780877780&
  link=<?php echo $link ?>/&
  picture=<?php echo $pic ?>&
  to=<?php echo $friendId ?>
  name=<?php echo $name ?>&
  caption=<?php echo $caption ?>&
  description=<?php echo $description ?>&
  redirect_uri=<?php echo $url ?>
share|improve this answer
This is nice but isn't there any practical way of setting section in red box on picture? – You Can Do It Jan 11 at 14:29
none that i know of. The picture might be outdated. In the feed dialog documentation the image doesn't have the field you have in red box – Darvex Jan 11 at 14:36
@Darvex, Any idea on how to send to multiple people by setting to:<list> – Raxit Sheth May 9 at 22:23
As far as i remember, in the "to" field, you can just enter IDs of people (comma separated), and the message will be sent to them. But i suggest you check that @RaxitSheth – Darvex May 9 at 22:29
@Darvex it is not allowing more than one Id/Username in "to" field. – Raxit Sheth May 11 at 5:01

You're looking for Facebook's new Send button.

http://developers.facebook.com/docs/reference/plugins/send/

share|improve this answer
My experiments with the send button indicate it sends the object to someone's FB Messages, not to their timeline. – Dave Sag Mar 25 at 3:36

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.