facebookarchive / fbconsole

A micro api client for writing scripts against the Facebook Graph API.
Other
325 stars 74 forks source link

Handle end of pagination #21

Closed michaelabon closed 11 years ago

michaelabon commented 11 years ago

iter_pages crashes when attempting to paginate past the final page. next_url = json_response['paging']['next'] has a KeyError when the json response lacks a next key. The next key is not included if this is the last page of data.

https://developers.facebook.com/docs/reference/api/pagination/

pcardune commented 11 years ago

Thanks for the fix!