我在Heroku上部署了一个应用程序。目前,我需要将托管照片的网址写到该照片的send_invoice。
我通过运行检查myPhoto.jpg是否存储在https://myapp.herokuapp.com上
~ $ heroku run bash
~ $ ls
如果使用示例photo_url='http://erkelzaar.tsudao.com/models/perrotta/TIME_MACHINE.jpg'
,Send_invoice可以正常工作,但我需要发送myPhoto.jpg
bot.send_invoice(message.chat.id, title='Working Time Machine',
description='Description',
provider_token=provider_token,
currency='usd',
photo_url='https://myapp.herokuapp.com/myPhoto.jpg',
photo_height=512, # !=0/None or picture won't be shown
photo_width=512,
photo_size=512,
is_flexible=False,
prices=prices,
start_parameter='time-machine-example',
invoice_payload='HAPPY FRIDAYS COUPON')
我也尝试过
photo_url='file:///myPhoto.jpg'
预期输出应为
但是我有
我缺少什么? 谢谢