我想使用 Python Facepy 从我们公司的 Facebook 网站获取事件。奇怪的是一切正常,除了返回的数据中缺少事件描述:
from facepy import GraphAPI
graph = GraphAPI("mysecrettoken")
events = graph.get('ourcompany/events')
for x in events['data']:
print x['description']
KeyError: 'description'
除描述外,所有数据都在那里(名称,开始时间)等