如何获取存储在Heroku中的文件的URL?

时间:2019-06-04 09:17:32

标签: python heroku

我在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'

预期输出应为

image 但是我有

image 我缺少什么? 谢谢

0 个答案:

没有答案