Posted on: 10/10/2014 8:32:39 AM | Views : 447

Hi
I'm working on a function that allow the admin on my website to post news to their Facebook page. I have got it working partly, I can make a post to the page or to my wall, but only as my own account. What i need to do is make to post to the page, with the page itself as the author, and not my account.
Anyone that have an solution for this?
My coke looks like this so far:
string app_id = "xxxx"; string app_secret = "xxxx"; string scope = "publish_stream,publish_actions,user_groups,manage_pages"; string page_id = "xxxx"; if (Request["code"] == null) { Response.Redirect(string.Format("https://graph.facebook.com/oauth/authorize?client_id={0}&redirect_uri={1}&scope={2}", app_id, Request.Url.AbsoluteUri, scope)); } else { Dictionary<string, str ...

Go to the complete details ...