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'
説明を除いて、すべてのデータがあります (名前、開始時間) など