This commit is contained in:
Dominic Grimm 2022-12-19 21:00:56 +01:00
parent 7fc623dbe5
commit 83820a470e
No known key found for this signature in database
GPG Key ID: 6F294212DEAAC530
1 changed files with 12 additions and 15 deletions

View File

@ -344,22 +344,19 @@ impl Client {
}
pub async fn login_api(&mut self) -> Result<String> {
dbg!(self.session.as_ref().context("Not logged in")?);
// let jwt = reqwest::Client::new()
// .get(self.api_url.join("token/new")?)
// .header(
// reqwest::header::COOKIE,
// self.session.as_ref().context("Not logged in")?,
// )
// .send()
// .await?
// .text()
// .await?;
// self.authorization = Some(jwt.to_string());
let jwt = reqwest::Client::new()
.get(self.api_url.join("token/new")?)
.header(
reqwest::header::COOKIE,
self.session.as_ref().context("Not logged in")?,
)
.send()
.await?
.text()
.await?;
self.authorization = Some(jwt.to_string());
// Ok(jwt)
bail!("ddd");
Ok(jwt)
}
pub async fn login(&mut self) -> Result<()> {