0

我想使用 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' 

除描述外,所有数据都在那里(名称,开始时间)等

4

1 回答 1

0

Graph api 不提供事件描述。我必须为每个事件单独获取它。

于 2012-07-17T06:41:26.777 回答