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