I want information from groups where I am and I can not get it. Always the code returns an empty data.
{u'data': []}
My code is as follows:
import facebook
graph = facebook.GraphAPI(access_token='my token')
a = graph.get_object('me/groups')
print(a)
What is wrong? I'm using Python 2.7.10 and Facebook official sdk.
I've tried with facepy
and it's the same, empty data.
Is it a bug?