pyFaceGraph icon indicating copy to clipboard operation
pyFaceGraph copied to clipboard

Python client lib for Facebook's new Graph API

Results 9 pyFaceGraph issues
Sort by recently updated
recently updated
newest added

Unfortunately, Distutils team decided to revoke support for non-https requests back in 2017, without worrying about breaking the backward compatibility of earlier versions of numerous python libraries. Just a heads...

Hi there, I get this error while installing on python 3.4 using pip: ``` error: invalid command 'bdist_egg' ``` Commenting out this line fixed it for me: ``` from distribute_setup...

`g[post_id]` returns a graph object. To access the node, I used `g[post_id]()` which failed. Then I tried `g[post_id].likes` which also returned a graph object but when I tried to access...

fetch_json can't be a classmethod and still try and access self.err_handler

in FacebookCanvasMiddleware you do this: ``` raw_fbrequest = request.GET.get('signed_request', None) ``` ...but Canvas apps now receive the signed_request via POST not GET. Facebook docs now suggest using Django's REQUEST attribute...

There seems o be no provision on calling the ?limit=x or paging criteria while requesting data from a graph node . Is this functionality expose in anyway ?

Node class docstring says: "...accessing non-existent attributes will still return a `Graph`... You’ll have to check for the presence of a key first, to make sure what you're trying to...

Hi, I had issues with getting images from Facebook - essentially I was doing: img = g['me']['picture'] & ('type', 'large') path = img() To get the image. Of course Facebook...