Feedforbot - RSS to Telegram 机器人

正在测试一个机器人:

主要用来替代 ifttt 那个靠谱但拖延严重的功能。也不是 ifttt 不好,是每次更新间隔 6 小时太可怕了。

还是自己来靠谱啊,另外记录一下:

# cat config.yml
cache:
  type: 'files'
schedulers:
  - listener:
      type: 'rss'
      params:
        url: 'https://www.appinn.com/feed/'
    rule: '*/4 * * * *'
    transport:
      type: 'telegram_bot'
      params:
        token: '1235:AAE7ae'
        to: '@appinnfeed'
        template: |-
          💧 #小众软件
          {{ TITLE }}

          {{ URL }}
  - listener:
      type: 'rss'
      params:
        url: 'https://meta.appinn.net/c/faxian/10.rss'
    rule: '*/4 * * * *'
    transport:
      type: 'telegram_bot'
      params:
        token: '1235:AAE7ae'
        to: '@appinnfeed'
        template: |-
          📣 #发现频道
          {{ TITLE }}

          {{ URL }}
  - listener:
      type: 'rss'
      params:
        url: 'https://meta.appinn.net/c/wen-ti-qiu-zhu/7.rss'
    rule: '*/4 * * * *'
    transport:
      type: 'telegram_bot'
      params:
        token: '1235:AAE7ae'
        to: '@appinnfeed'
        template: |-
          ❓ #发现频道
          {{ TITLE }}

          {{ URL }}

然后就可以很方便的定时更新了,比如上面的是每 4 分钟检测一次更新。

正式和 ifttt 说再见了,三年多,3000多次同步,感谢。