Limit scopes

This commit is contained in:
pancakes 2024-11-25 01:27:10 +10:00
parent 6b8b4ea44b
commit 55bbbe5c75
No known key found for this signature in database
GPG key ID: ED53D426432B861B

View file

@ -13,7 +13,7 @@ if __name__ == "__main__":
elif not os.path.exists("accounts"):
os.mkdir("accounts")
Mastodon.create_app(name, to_file=f"accounts/{username}.client.secret", api_base_url=url, user_agent="fedifeeds")
Mastodon.create_app(name, scopes=["write:statuses"], to_file=f"accounts/{username}.client.secret", api_base_url=url, user_agent="fedifeeds")
masto = Mastodon(f"accounts/{username}.client.secret")
print(masto.auth_request_url())
masto.log_in(username, code=input("code: "), to_file=f"accounts/{username}.secret")
print(masto.auth_request_url(scopes=["write:statuses"]))
masto.log_in(username, code=input("code: "), scopes=["write:statuses"], to_file=f"accounts/{username}.secret")