Seems legit now

This commit is contained in:
2024-03-19 22:23:13 +01:00
parent e0fa508be0
commit 59759bd6f4
5 changed files with 15 additions and 17 deletions

View File

@@ -117,16 +117,14 @@ async def authorize(custom_session: Union[ClientSession, None] = None) -> str:
unauthorized_client = Client(
base_url=sync.config_get("address", "posting", "api"),
timeout=sync.config_get("timeout", "posting", "api"),
verify_ssl=True,
sync.config_get("address", "posting", "api"),
raise_on_unexpected_status=True,
follow_redirects=False,
timeout=sync.config_get("timeout", "posting", "api"),
)
login_token = login(
client=unauthorized_client,
form_data=BodyLoginForAccessTokenTokenPost(
body=BodyLoginForAccessTokenTokenPost(
grant_type="password",
scope="me albums.list albums.read albums.write photos.list photos.read photos.write videos.list videos.read videos.write",
username=sync.config_get("username", "posting", "api"),
@@ -141,12 +139,10 @@ if not isinstance(login_token, Token):
exit()
client = AuthenticatedClient(
base_url=sync.config_get("address", "posting", "api"),
timeout=sync.config_get("timeout", "posting", "api"),
verify_ssl=True,
raise_on_unexpected_status=True,
sync.config_get("address", "posting", "api"),
token=login_token.access_token,
follow_redirects=False,
raise_on_unexpected_status=True,
timeout=sync.config_get("timeout", "posting", "api"),
)
if __name__ == "__main__":