使用Python将图片发布到Facebook

时间:2011-02-25 14:08:26

标签: python http curl urllib2 urllib

如何使用Python将图像发布到Facebook?

4 个答案:

答案 0 :(得分:5)

您可以使用Facebook提供的Python SDK使用oauth键上传照片 获得oauth密钥后,您可以使用GraphAPI.put_object()上传图片:

graph = facebook.GraphAPI(oauth_access_token)
photo = open("picture.jpg", "rb")
graph.put_object("me", "photos", message="You can put a caption here", source=photo.read())
photo.close()

答案 1 :(得分:2)

不幸的是,Python SDK现已停止使用。不管用。需要使用Javascript / PHP / iOS / Android API

答案 2 :(得分:2)

答案 3 :(得分:1)