我有一个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文档中找不到一些示例。有什么办法可以在一封邮件中附加更多图片?