How to add an image to an existing facebook post using API and python?
I'm using facebook graph API to update/edit the text of a specific post on my page import facebook page_token = '...' fb = facebook.GraphAPI(access_token = page_token, version="2.12") page_id = '...' post_id = '...' fb.put_object(parent_object = page_id + '_' + post_id,…