blob: 41ed4e35ed86e8a7df5ee7b729b6ad239de07644 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
from mastodon import Mastodon
# Replace with your Mastodon instance URL
api_base_url = 'https://chatwithus.live'
# Create app and get the client credentials
Mastodon.create_app(
'my_app',
api_base_url = api_base_url,
to_file = 'clientcred.secret'
)
print("Client credentials saved to 'clientcred.secret'")
|