我正在尝试使用facebook bot发送图像。我可以正常发送文本,但每当我尝试发送消息时,我都会收到错误: TypeError:打开文件'plot.jpg',模式'rb'在0x7f34a2fe8b70不是JSON可序列化的。我正在使用烧瓶和heroku作为机器人,如果这有所作为。
这是我的代码:
def send_message(recipient_id, message_text):
log("sending message to {recipient}: {text}".format(recipient=recipient_id, text=message_text))
params = {
"access_token": os.environ["PAGE_ACCESS_TOKEN"]
}
headers = {
"Content-Type": "application/json"
}
log(os.getcwd())
data = json.dumps({
'recipient': {
'id': recipient_id
},
'message': {
'attachment': {
'type': 'image',
'payload': {}
}
},
'filedata': (os.path.basename('plot.jpg'), open('plot.jpg', 'rb'))
})
r = requests.post("https://graph.facebook.com/v2.6/me/messages", params=params, headers=headers, data=data)
if r.status_code != 200:
log(r.status_code)
log(r.text)
答案 0 :(得分:0)
我遇到了同样的问题,我使用multipart/form-data
解决了问题,而不是使用json.dumps()
对整个有效负载进行编码,您可以使用MultipartEncoder
中的requests-toolbelt-0.8.0
进行多部分编码有效载荷。
注意 - 由于某些未知原因,Facebook的Graph API仅接受png
张图片,在下面的示例中我使用了png
文件。
*编辑代码(冗余结束括号)
import json
import requests
from requests_toolbelt import MultipartEncoder
def send_message(recipient_id, message_text):
log("sending message to {recipient}: {text}".format(recipient=recipient_id, text=message_text))
params = {
"access_token": os.environ["PAGE_ACCESS_TOKEN"]
}
log(os.getcwd())
data = {
# encode nested json to avoid errors during multipart encoding process
'recipient': json.dumps({
'id': recipient_id
}),
# encode nested json to avoid errors during multipart encoding process
'message': json.dumps({
'attachment': {
'type': 'image',
'payload': {}
}
}),
'filedata': (os.path.basename('plot.png'), open('plot.png', 'rb'), 'image/png')
}
# multipart encode the entire payload
multipart_data = MultipartEncoder(data)
# multipart header from multipart_data
multipart_header = {
'Content-Type': multipart_data.content_type
}
r = requests.post("https://graph.facebook.com/v2.6/me/messages", params=params, headers=multipart_header, data=multipart_data)
if r.status_code != 200:
log(r.status_code)
log(r.text)