You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
e.g. this is how I changed it to get it running again (though I assume you'd want to change the config to be labeled access_token instead of password or modify how init_client works.
deflogin(self):
self.log.info(f"Logging in to {self.config.bot_account.server} using API Key")
self.client=Mastodon(api_base_url=self.config.bot_account.server, access_token=self.config.bot_account.password)
The text was updated successfully, but these errors were encountered:
Mastodon v4.4 dropped support for authentication via password #387
The fix is to use an API access token in
hype/hype/hype.py
Lines 22 to 28 in 422caf8
e.g. this is how I changed it to get it running again (though I assume you'd want to change the config to be labeled access_token instead of password or modify how init_client works.
The text was updated successfully, but these errors were encountered: