0

グラフ API でイベントを作成するときに画像をアップロードするにはどうすればよいですか? 例:

user.facebook.put_object("me", "events", name="test", start_time=start_date, end_time=end_date, picture=image)

私はもう試した:

 image = 'C:\\Path\\to\\image.jpg' #and
 image = open('C:\\Path\\to\\image.jpg', 'a') #and
 image = open('C:\\Path\\to\\image.jpg', 'a').read() #and

どれも機能しませんでした。

4

1 に答える 1

0

github のドキュメントから: https://github.com/pythonforfacebook/facebook-sdk/

graph = facebook.GraphAPI(oauth_access_token)
tags = json.dumps([{'x':50, 'y':50, tag_uid:12345}, {'x':10, 'y':60, tag_text:'a turtle'}])
graph.put_photo(open('img.jpg'), 'Look at this cool photo!', album_id_or_None, tags=tags)
于 2012-07-17T01:59:19.717 に答える