aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'toot.py')
-rw-r--r--toot.py18
1 files changed, 13 insertions, 5 deletions
diff --git a/toot.py b/toot.py
index e1995fd..659d232 100644
--- a/toot.py
+++ b/toot.py
@@ -1,12 +1,20 @@
1from mastodon import Mastodon 1from mastodon import Mastodon
2 2
3from config import TOOT_API_BASE_URL, TOOT_CLIENT_SECRET, TOOT_ACCESS_TOKEN, TOOT_CLIENT_ID 3from config import TOOT_API_BASE_URL, TOOT_CLIENT_SECRET, TOOT_ACCESS_TOKEN, TOOT_CLIENT_ID, MASTODON_CLIENT_ID_FILE
4 4
5''' 5'''
6https://mastodonpy.readthedocs.io/en/stable/index.html 6https://mastodonpy.readthedocs.io/en/stable/index.html
7''' 7'''
8 8
9mastodon_client = Mastodon(client_id=TOOT_CLIENT_ID, 9mastodon_client = Mastodon(client_id=MASTODON_CLIENT_ID_FILE,
10 client_secret=TOOT_CLIENT_SECRET, 10 api_base_url=TOOT_API_BASE_URL)
11 api_base_url=TOOT_API_BASE_URL, 11
12 access_token=TOOT_ACCESS_TOKEN) 12url = mastodon_client.auth_request_url(redirect_uris="https://zjw.social/checkinbot/fedi_login_callback", scopes=['write:media', 'write:statuses'])
13print(url)
14
15# mastodon_client.log_in(
16# username="[email protected]",
17# code='2RnDpj9lMGLWuIeppl-Cghy-iwSXzlJFWU6mQaKYD9o',
18# # redirect_uri="urn:ietf:wg:oauth:2.0:oob",
19# scopes=['write:media', 'write:statuses']
20# )
Powered by cgit v1.2.3 (git 2.41.0)