Facebook api – Facebook Graph API : 'error_user_msg': 'These photos were already posted.'
I want to publish a post on Facebook using Python, provided that the post contains text and multi images, I wrote this code, params = { 'access_token': 'MY_ACCESS_TOKEN', 'format': 'json' } image_urls = ['https://example.com/images/tw8qxmjwrb.jpg', 'https://example.com/images/g41oikacph.jpg'] temp_images = [] for url…