我只是想使用它的 python api 在 Facebook 上让我朋友的生日
我在https://developers.facebook.com/tools/explorer/中尝试使用“me/friends?fields=birthday”进行查询,效果很好,但在我的 python 代码中显示“GraphAPIError:必须是活动访问令牌用于查询当前用户的信息。”
我在这里发布了我的代码:
import facebook
token = 'a token' # token omitted here, this is the same token when I use in https://developers.facebook.com/tools/explorer/
graph = facebook.GraphAPI(token)
fb = graph.request("me/friends?fields=birthday")
# while graph.request("me/friends") works well
print fb
有人帮忙吗?