如何通过Facebook Message API发送多个附件

时间:2019-05-22 11:05:52

标签: python facebook api curl post

我有一个Python代码,可在工作区线程中发送附件(图像):

def send_message(recipient_id = 3632761541525178, message_text = 'mehmeh',typeofrec = 'id'):

bash_curl = """
 curl  \
-F 'recipient={"id":"""+str(recipient_id)+"""}' \
-F 'message={"attachment":{"type":"image", "payload":{}}}' \
-F 'notification_type=SILENT_PUSH'\
-F 'filedata=@'/var/tmp/AKazakov/hehe.png';type=image/png'\
"https://graph.facebook.com/v2.6/me/messages?access_token="""+token+""""
"""
subprocess.check_call(bash_curl,shell=True)

但是我无法附加2个或更多图像,并且在API文档中找不到一些示例。有什么办法可以在一封邮件中附加更多图片?

0 个答案:

没有答案