How can I post an image to Facebook using Python?
Post picture to Facebook using Python
I think this question can help you: #4009941 –
Pet
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()
Unfortunately, the Python SDK is discontinued now. Will not work. Need to use Javascript / PHP / iOS / Android APIs
Fresh links of Facebook Platform Python SDK
Checkout this library: https://github.com/facebook/python-sdk/
The repo link is no more available, this time right now I check it. –
Wagonette
© 2022 - 2024 — McMap. All rights reserved.