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 facebook site (site, not profil wall) and would like to display the message feed on a webpage. This already works fine if I use

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

But I need an access_token for this. Using the Graph Explorer I can generate a temporary token.

I know I can create an OAuth but I don't want every visitor of my webpage to login into facebook just to see the feeds. There must be another way... Maybe using PHP instead of Javascript?

share|improve this question

3 Answers

up vote 2 down vote accepted

You can use https://www.facebook.com/feeds/page.php?id=<your-page-id>&format=json This returns a json object and requires no access token.

You can also use different formats such as xml and rss20.

Hope this helps.

share|improve this answer
This is great! Do you have any documentation for this API? – PiTheNumber May 3 at 6:40

https://developers.facebook.com/docs/plugins/ provides a list of all plugins that you can embed. However, this does not work if you want to display feed to non-fb-logged-in users.

To solved your problem - have a server side script that accesses this feed and displays it. If this feed is from a FB page, then you will need an access token with "manage_pages" permissions. Using that, you can get the contents using the following (PHP) code:

$response=file_get_contents("https://graph.facebook.com/".$id."/feed&access_token=".$facebook_access_token);
$response_array=json_decode($response,true);
// $id: Page ID

You can also customize this query by adding pagination parameters like since,limit,until etc. Please refer to https://developers.facebook.com/docs/reference/api/ for documentation.

This approach allows you the following advantages:

  • Your Access Token is safe on your server and not visible to public.
  • Your feed can be seen by even a non-logged in user.
  • You can customize the look and feel of your feed since you control the UI.

Disadvantages:

  • Needs you to code and actively maintain a piece of code that does nothing except act like a proxy. Everytime FB changes the structure of it's object, you will need to change this code.
share|improve this answer
How do I get such a token with manage_pages permission? – PiTheNumber Mar 12 '12 at 8:50
If you have only one or two pages and want to quickly configure things, you can just go to Graph API Explorer (developers.facebook.com/tools/explorer) and generate one from there. If you do not wish to use this, then you need an app that will get it from a user using FB.login (developers.facebook.com/docs/reference/javascript/FB.login) or some such FB-Authentication mechanism. – Shreeni Mar 12 '12 at 9:24
1  
Thanks. I already tried the Graph API Explorer but the token I get there is only temporary: "Error validating access token: Session has expired at unix time...". I need a long time token... – PiTheNumber Mar 12 '12 at 9:45

doing this in windows 8 store app, this seem to work

url = "https://graph.facebook.com/me?fields=feed&access_token=" + fbtoken;

share|improve this answer
This is the same as Shreeni proposed and it works well if you get an access token but Nick Lucas is nicer because it works without token. Still +1 for your effort and welcome to Stackoverflow :) – PiTheNumber May 7 at 6:55

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.