pyfb icon indicating copy to clipboard operation
pyfb copied to clipboard

A Python Interface for the Facebook Graph API

Results 4 pyfb issues
Sort by recently updated
recently updated
newest added

Hi, First thing: thank you for this lib. Really good job. Now the issue: I think something changed on facebook's service that broke the get_access_token funcionality. It's simple: they are...

the new response of facebook is like u'{access_token:5f5b...}' and dic(parse_qsl(data)) can't process that, so i change that for a json.loads()

I had to make quite a few changes to better handle errors. I switched to use the requests package instead of direct use of urllib, as it is much easier...

I don't see a method to get a user's avatar/main profile photo. And it's not returned in `get_myself()`. I also tried creating a new method in pyfb.py to accomplish this......