How to programmatically push content to Facebook Page wall?
Fact: if I manually add a link to my page's wall, that link will show up in the news 开发者_运维问答feed of any Liker's of my page. Example: user Joe likes http://facebook.com/soccer-page. Sam, who is the admin of soccer-page, posts a link to the wall of soccer-page, Joe sees that link show up in his news feed.
Question: using .NET or jQuery, how can I programmatically add a link to a page's wall, such that once it's added, the link will show up in all the Likers' news feeds? In the case of the example above, let's say I have a task that runs once a day that grabs the latest soccer-related article from an RSS feed. I want that task to post it for me to the soccer page's wall.
Any info would be greatly appreciated! Thanks.
Look at this article
I found FacebookService.API.stream.publish(...);
EDIT: And i found better one Post stories to your facebook wall from asp.net web app
Answer can be found here - facebook c# sdk - The user hasn't authorized the application to perform this action
精彩评论