What is the API for Facebook profile stream? Aka wall posts?

Is there an API call, and if so, what is the call to get “posts to my wall from me and others” on Facebook? It looks like it can be filtered out from the Facebook stream API, but it is not clear how this works for me.

This link seems to suggest:

http://developers.facebook.com/news.php?blog=1&story=225

+4
source share
3 answers

You want to execute the FQL query as follows:

SELECT actor_id, message FROM stream WHERE source_id = <user id> limit 50 

You probably want to select a few more fields, you can see what is available here: http://wiki.developers.facebook.com/index.php/Stream_%28FQL%29

+1
source

Here he is. Profile for profile (Wall): https://graph.facebook.com/me/feed?access_token= ...

+1
source

https://developers.facebook.com/blog/post/465

You can publish stories to people who like your page with an open schedule, just as you write a Facebook message from your wall. Stories appear in news feeds of people who clicked the Like button on the Open Graph page.

You can also publish using our API. If you link your Open Graph page to your Facebook application using the fb: app_id meta tag, you can post updates to users who like your pages using the graphical API.

First you need to get an access token for your application.

Post a blog post, it covers everything you need.

0
source

All Articles