use roboat::ClientBuilder; #[tokio::main] async fn main() -> Result<(), Box> { let client = ClientBuilder::new().build(); // There is not really another way to debug this other than printing the xcsrf inside the source code for this method. client.force_refresh_xcsrf().await?; client.force_refresh_xcsrf().await?; client.force_refresh_xcsrf().await?; Ok(()) }