如何每天早上在IFTTT中发送不同的图片?

时间:2019-06-15 10:51:08

标签: python telegram ifttt

下午好!

我想创建一个applet,每天早上将圣经中的每日经文发送到Telegram聊天中。

在applet的设置中,我只能设置图像链接。但是此链接每天早晨都会更改。

因此,我创建了python服务器,该服务器返回了当天的图片,并在此之后将服务器的url(http://rhjhxoi.pythonanywhere.com/)输入到applet的设置中。

服务器中的某些代码:

# get a picture-verse of the day using YouVersion API
source = json.loads(response.content)
link = source['image']['url']
with open('picture.jpg', 'wb') as f:
    f.write(requests.get(link).content)

return send_file('picture.jpg', mimetype='image/jpeg')

但是IFTTT僵尸仅从我的服务器下载一次图像,每天早晨重复一次。

如何设置IFTTT bot每天早晨从服务器下载新图像并将其发送到Telegram聊天中的小程序?

0 个答案:

没有答案