我想使用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'
除了描述,所有数据都在那里(name,start_time)等
答案 0 :(得分:0)
Graph api不提供事件描述。我必须为每个事件单独取出它。