我遵循了一些我在网上找到的例子,让人们登录我的网站,但是当我试图获取他们的帖子时,我被卡住了。
我尝试收到这样的帖子(在@app.before_request
上,我处理令牌并检查用户是新用户还是旧用户):
postss = []
user.access_token = result['access_token']
graph = GraphAPI(result['access_token'])
profile = graph.get_object('me')
posts = graph.get_connections(profile['id'], 'posts')
while True:
try:
for post in posts['data']:
postss.append(post)
posts = requests.get(posts['paging']['next']).json()
except KeyError:
break
但最后,postss
列表为空,实际上,posts变量为空!
即使之前已经记录过用户,问题仍然存在,所以这不是问题所在。
提前谢谢!
答案 0 :(得分:1)
我只需要更正权限才能获得权限范围内的帖子。谢谢CBroe。