使用 Python 将图片发布到 Facebook

发布于 2024-10-19 03:24:52 字数 35 浏览 5 评论 0原文

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

How can I post an image to Facebook using Python?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

佼人 2024-10-26 03:24:52

您可以使用 facebook 提供的 Python SDK 使用 oauth key 上传照片.
获得 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()

You can use the facebook provided Python SDK to upload photos using an oauth key.
Once you get the oauth key, you can upload a picture with 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()
独孤求败 2024-10-26 03:24:52

不幸的是,Python SDK 现已停产。不会起作用。需要使用Javascript / PHP / iOS / Android API

Unfortunately, the Python SDK is discontinued now. Will not work. Need to use Javascript / PHP / iOS / Android APIs

情深如许 2024-10-26 03:24:52

Facebook Platform Python SDK 的新链接

http://pythonforfacebook.com

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文