我正在使用python facebook-sdk并希望在我的新闻提要中找到所有带有位置标记的帖子。要在我的新闻提要中获取所有帖子,我知道我可以使用这个:
graph = facebook.GraphAPI(USER_TOKEN)
feed = graph.get_connections("me", "home")
根据facebook 的 API 文档,如果我只想要带有位置的帖子,我需要将参数 'with=location' 添加到生成的 url 的末尾
feed = graph.get_connections("me", "home")
但是当我尝试
feed = graph.get_connections("me", "home", with='location')
我明白了
SyntaxError: invalid syntax
我究竟做错了什么?