fixed 401 error

This commit is contained in:
Lynne Megido 2019-05-30 20:32:05 +10:00
parent 6b4fa46ae4
commit eaf3d114a6

8
gen.py
View File

@ -28,9 +28,11 @@ cfg = json.load(open('config.json', 'r'))
toot = create.make_toot()
if not args.simulate:
client = Mastodon(client_id = cfg['client']['id'],
client_secret = cfg['client']['secret'],
api_base_url=cfg['site'])
client = Mastodon(
client_id=cfg['client']['id'],
client_secret=cfg['client']['secret'],
access_token=cfg['secret'],
api_base_url=cfg['site'])
try:
client.status_post(toot, visibility = 'unlisted', spoiler_text = cfg['cw'])