电报文档中有一张图片显示了 带有图像和文本的格式化消息, 它来自TechCrunch。 我试图复制这个并失败了。 如何复制这种格式。 我正在使用Python
def reply(msg=None, img=None):
if msg:
resp = urllib2.urlopen(BASE_URL + 'sendPhoto', urllib.urlencode({
'chat_id': str(chat_id),
'caption': msg,
})).read()