Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a client who wants their company's Facebook newsfeed/timeline to be displayed on their website. It's not a personal timeline/newsfeed, but an organisation's.

Everything I've read seems a few years old, but the upshot appears to be: Facebook wants to keep all its data on its own servers -- they don't want people exporting it, and people have been banned for trying. (As I say, this information was several years old.)

The closest current thing I've found is the Activity Feed Plugin, but that only registers other user's interactions with the site or a FB app.

Has anyone had any success exporting their public updates to an external website, or do I have to tell my client that it can't be done?

Thanks for any help!

share|improve this question

3 Answers

up vote 15 down vote accepted
+50

AFAIK, it is possible, in a way. The simplest solution, but not best for your situation could be the Like Box plugin:

The Like Box enables users to:

See how many users already like this Page, and which of their friends like it too
Read recent posts from the Page
Like the Page with one click, without needing to visit the Page

Better solution: use their Graph API, however you can only read the data(as JSON), not have the stream exactly replicated on your client's website, don't expect to be able to apply the styles that facebook uses(i.e you won't be able to scrape it), you'll have to either replicate it, or create your own styles.

Now if the page is public and can be read by all, as in there are no privacy rules, then you can simply call the url with any valid access_token(can be app access_token also):

https://graph.facebook.com/<clientpagename_OR_id>/feed

or

https://graph.facebook.com/<clientpagename_OR_id>/posts

depending on what exactly you need, try the graph api explorer to check that(and also see the kind of data being returned). When there are lots of posts, there will be pagination urls, which you'll be able to notice in the explorer too.

Incase the page is not public, you'll need an access_token with the read_stream permission, hence you'll need to create a facebook app, of type website. Then get your client's page's admin to authorize the app, with read_stream permission. After that you can call the urls with the access_token that you receive after authentication and can continue reading the stream.

https://graph.facebook.com/<clientpagename_OR_id>/posts?access_token=thetoken

In this case use the PHP SDK, to simplify authentication and calling the graph api.

Important Links: Authentication Guide , Real-time-updates.

Good luck.

Edit: you do need an access token to access the feed or posts connections, but you donot necessarily need an access token to read the page object itself, as given in this documentation.
Note from the doc:

For connections that require an access token, you can use any valid access token if the page is public and not restricted. Connections on restricted pages require a user access token and are only visible to users who meet the restriction criteria (e.g. age) set on the page.

share|improve this answer
Real-time updates won't be useful at the moment, because it doesn't have a connection for posts yet, however i have given you the link for future reference – bool.dev Apr 24 '12 at 3:51
I've hunted around and I can't find a single "public" page that doesn't require an access token. I guess you need one, no matter what. – Django Reinhardt Apr 24 '12 at 12:06
there is one page that i know of, which was recently mentioned in a question here. try this url in the graph explorer : https://graph.facebook.com/dominos/posts or just in the browser address bar. Also if you think you want to award me the bounty then you'll have to do it manually, incase the 24 hour period is over. – bool.dev Apr 24 '12 at 12:27
I have to wait few hours before it will let me. – Django Reinhardt Apr 24 '12 at 13:06
yeah i checked the start time, no worries, but do try the dominos page, its public, i had tried it yesterday. – bool.dev Apr 24 '12 at 13:08
show 2 more comments

You can retrieve the organization's newsfeed using Facebook's Graph API. Timeline can't be retrieved via public API.

There is no plugin to do this. You would need to call

https://graph.facebook.com/USER_ID/home

which gives you a JSON response.

You then need to parse the JSON into a new layout on the organization's web page.

Confusingly, calling

https://graph.facebook.com/USER_ID/feed

doesn't retrieve the newsfeed, but a user's wall posts, which may or may not be what you want.

Here is a tutorial that goes through the basics of setting up a newsfeed on a website with php.

share|improve this answer

Yes, it can be done. First register the web site at facebook's developer page. Than you can use any suitable API for interacting with FB. Sometimes ago I used SpringSocial (since I was working tightly with Spring)... You can use FB's own api which is also very useful you can read the tutorial here

share|improve this answer
I have looked through the API documentation and I can't see anything which would allow me to do what I need :( – Django Reinhardt Apr 23 '12 at 22:18
2  
I think @bool.dev has answered your question.... – Amit Apr 24 '12 at 7:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.