Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Facebook App that would post a link to a Facebook page using this code:

FacebookClient fb = new FacebookClient(this.ExtendedToken);
dynamic postParams = new ExpandoObject();
string path = string.Format("{0}/feed", pageId);
postParams.message = message;
postParams.link = link;
fb.AppId = FacebookHelper.GetFBAppID();
fb.AppSecret = FacebookHelper.GetFBAppSecretId();
fb.Post(path, postParams);

My question is, is there a way to set it as "Allowed on page"? So that it will be posted in the "Timeline" of the Page instead in the "Recent Post" box.

Thanks,

JR

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.