views:

20

answers:

2

Hello, im looking for something quite simple, i thought, but didn't find any solution on the web.

I want to get the posts (only from the band, not others) from a FB Page Wall (its a Band, so no private profile) and publish it on MY own site.

I hoped to get the Posts as XML or JSON and then parse them. So i wanted to use FB as a news System.

But i didn't find a solution - i don't want to have the user to log in with his account to see anything - it should be just a public stream.

The only idea i found was to use twitter as an export mechanism .. but thats kind of elaborated..

Does anybody have an idea?

A: 

I assume you created a facebook page for your band and it has url in such format:

http://www.facebook.com/pages/<band_name>/<page_id>

In this case you can read wall posts in json format using Graph API (no login required):

https://graph.facebook.com/<page_id>/feed
serg
A: 

Thank you- great! Is there a possibility to filter this for posts only from "me" (like ?filter=2 in the facebook user interface [doesnt work with graph url ..])

John Miller

related questions