fix login url

This commit is contained in:
Denis-Cosmin NUTIU 2024-12-30 18:01:02 +02:00
parent 8b7013709d
commit 3b39dcc283

View file

@ -20,7 +20,7 @@ impl BlueSkyClient {
};
let body = serde_json::to_string(&server_create_session)?;
let token: Token = client
.post("https://bsky.social/xrpc/com.atproto.repo.createRecord")
.post("https://bsky.social/xrpc/com.atproto.server.createSession")
.body(body)
.send()
.await?