I'm designing a mobile website for my church, and I would like to post my church's Facebook status updates on the website. I tried the Facebook like box, but I found it limited in functionality, and it doesn't work very well on a mobile website.
I then discovered Facebook's Graph API. I found a PHP script to use on my website (http://stackoverflow.com/questions/9373645/can-you-get-a-public-facebook-pages-feed-using-graph-api-without-asking-a-user), and I created an app on Facebook. Using Facebook's Graph API Express, I'm trying to customize the output so I ONLY obtain my page's status updates and timestamps.
For example, I tried https://graph.facebook.com/[profile ID]/posts. However, this includes when I posted pictures and created events; I only want status updates. Is there any way I can use Graph API to limit the posts by specifying the "type" as "status"? I can't get it to work.
Ideally, I want the code to get my church Facebook page's status updates, particularly the "message" and "created_time" fields, and I would like to limit the results to 10.
If there is a better way to do this, please let me know. I am a novice at this, and I'm basically just trying to find the code to make this happen.