这项工作:
mybot.sendDocument(chat_id=chatid, document=open('bla.pdf', rb'))
但如果我以前做过:
with open('bla.pdf', 'rb') as fp:
b = fp.read()
我不能这样做:
mybot.sendDocument(chat_id=chatid, document=b)
错误是:
TypeError:“字节”类型的对象不是 JSON 可序列化的
我使用 python 3.5.2 win 或 linux
感谢您的回答