4

I've seen this and this but before I sink a ton of time into it, I want to know if what I'm trying to do is possible. I have a Page on FB (not a profile, but a Page for business, websites, etc) and I want to post a story to it via my site automatically. I don't want to do anything else but that. I don't want to create an app (if I don't have to), just post to a Page. Is there an easy way to do this, or is this super complicated?

Also, if I have to build an app, what's the simplest way to go about this (the other guy's question was never answered)?

Thanks!

Community
  • 1
  • 1
Jason
  • 51,583
  • 38
  • 133
  • 185

3 Answers3

0

Yes, you will need to get a page access token. Simply use the user access token for an admin of the page and call me/accounts There you will find a list of all the pages and apps admined by that user. Find the page, and in that object will be the page access token. Use that page access token and HTTP POST to me/feed with the post parameters set.

See also:

http://developers.facebook.com/docs/reference/api/page/

https://developers.facebook.com/docs/reference/api/permissions

http://developers.facebook.com/docs/authentication/

DMCS
  • 31,720
  • 14
  • 71
  • 104
0

You could write a script to control a web browser. The script could log in then post the message... Use a library like WatiN to script the browser.

Frank Schwieterman
  • 24,142
  • 15
  • 92
  • 130
0

You are either going to have to make a Facebook Application, use franks method, or do some sniffing and figure out how the publisher works and login / post with cURL and cookies.

Also there is a application called "Blog RSS Feed Reader" if you wanted to go the RSS route.

James Van Boxtel
  • 2,365
  • 4
  • 22
  • 33