views:

36

answers:

0

I'm using the fantastic python-sdk wrapper for the facebook graph api in python.

If I want to get the information on a friend's wall:

result = graph.get_connections( friendUID , "feed")

It returns a bunch of wall posts and a pair of URLs to access next/previous posts in

result["data"]["paging"] It looks like {u'next': u'https://graph.facebook.com/[friendUID]/feed?access_token=XXXX&limit=25&until=2010-08-06T13%3A42%3A37%2B0000', u'previous': u'https://graph.facebook.com/[friendUID]/feed?access_token=XXXX&limit=25&since=2010-09-26T19%3A12%3A23%2B0000'}

Is there a way to access these using the facebook python sdk... For consistency, and if possible, I would like to avoid getting the urls and using urllib/json to get the info myself.

THANKS!!!