正如标题所说。是否有可能编写一个Python脚本,在Facebook墙上发布jpg图片以及文本字符串?如果有可能。我该如何开始?
最好的问候。
答案 0 :(得分:0)
您可以使用Facebook Graph API
执行此操作您可以在墙上here找到发布文字和附件的文档。确保首先验证用户。您可以在同一页面上找到文档
然后代码看起来很简单:
import facebook
graph = facebook.GraphAPI(access_token='your_token')
attachment = {
'name': 'Link name'
'link': 'http://www.example.com/',
'caption': 'Check out this example',
'description': 'This is a longer description of the attachment',
'picture': 'http://www.example.com/thumbnail.jpg'
}
graph.put_wall_post(message='Check this out...', attachment=attachment)