0%

自动获取Pocket发送到mastodon

Pocket操作

主要是获取CONSUMER KEY和access token

参考https://getpocket.com/developer/docs/v3/retrieve

1
2
3
p = Pocket(consumer_key='',access_token='')
p.retrieve(offset=0,count=5,tag='hk',since=test_timestamp)
# 根据返回值读取 resolved_url和resolved_title

发送消息到mastodon

1
2
3
4
5
6
7
8
mastodon = Mastodon(
client_id='',
client_secret='',
access_token = '',
api_base_url = 'https://domain'
)
mastodon.toot(str)
# str为发送文本,其他参数参考docs

定时执行

每天1点定时执行

0 1 * * * python /home/youScript.py

参考

https://getpocket.com/developer/docs/v3/retrieve

Pocket API + Python 學習筆記

利用Pocket API实现分享自己的阅读列表

Mastodon | 微博转发到 Mastodon bot

https://mastodonpy.readthedocs.io/en/stable/