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.

I'm using Facebook C# SDK in order to post content on a profile's wall. Whatever gets posted to the wall does not include the "Share" link. It has "Like" and "Comment," but not "Share."

Question: how to I make that Share link show up? Thanks!

Some code...

string profileId = "XYZ";
string accessToken = "abc"; // I already know how to get accessToken

FacebookClient client = new FacebookClient(accessToken);

dynamic messagePost = new ExpandoObject();
messagePost.access_token = accessToken;
messagePost.picture = "http://pic.com/pic.png";
messagePost.link = "http://www.examplearticle.com";
messagePost.name = "name goes here";
messagePost.description = "description goes here";

var result = client.Post(string.Format("/{0}/feed", profileId), messagePost);

Is there something like messagePost.enableShare = "true", or messagePost.type = "shareableLink" ?

share|improve this question

1 Answer

up vote 1 down vote accepted

Simple fix:

var result = client.Post(string.Format("/{0}/links", profileId), messagePost);

By using "/links" instead of "/feed," the Share link shows up.

share|improve this answer

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.