vote up 1 vote down star
1

Is there an API call, and if so, which call to get the 'posts to my wall from myself and others' on Facebook? It seems like it could be filtered out of the facebook stream API, but it's not clear how that works to me.

This link seems to imply it's possible:

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

Thanks!

flag

3 Answers

vote up 1 vote down check

I haven't tried it, but I was just looking into a similar issue today. I think you want to start here:

http://wiki.developers.facebook.com/index.php/Stream_%28FQL%29

If you're using PHP, look up the various stream.* methods.

link|flag
Thanks, I'll take a look. – John Aug 10 at 21:38
vote up 0 vote down

You want to do an FQL query like this:

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

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

link|flag
vote up -2 vote down

is there anyway i can default my wall on my profile page

link|flag

Your Answer

Get an OpenID
or

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