views:

343

answers:

1

I'm using an ASP.NET Facebook Developers Toolkit (http://www.codeplex.com/FacebookToolkit) on an external website, and I'm also the admin of a facebook fan page for the website. Users on my website (may or may not be facebook users) create content articles.

I would like to hook up these articles to the Facebook fan page, so that, when they write the article, then ones with FB accounts can sign into FB and post on the Fan page. I'm sure they would need to be a fan first.

Any idea on how to do this?

+5  A: 

Hello ,

You can use Graph api to post on face book wall.Follow this link link text

You can publish to the Facebook graph by issuing HTTP POST requests to the appropriate connection URLs above, using an application access token. For example, you can post a new wall post on Arjun's wall by issuing a POST request to https://graph.facebook.com/arjun/feed:

curl -F 'access_token=...' \
     -F 'message=Hello, Arjun. I like this new API.' \
     https://graph.facebook.com/arjun/feed

I hope it will helpful.

PrateekSaluja