rfesi
rfesi copied to clipboard
Rust API for the EVE online ESI
Error when trying to authenticate user using .enable_application_authentication(true) with Builder
when I execute `let claims_option = self.esi.authenticate(oauth_data.0.as_str(), verifier).await?;` rfesi throws a HTTP 400 when running ``` let resp = self .client .post(&self.token_url) .headers(self.get_auth_headers()?) .form(&body) .send() .await?; ``` this is client.rs...
https://docs.esi.evetech.net/docs/esi_introduction.html#rules states that we should be looking at the `X-ESI-Error-Limit-Remain`, `X-ESI-Error-Limit-Reset`, and `expires` headers in the response, but I don't see a way to access them using `rfesi`. A similar...
If the struct instance has a refresh token specified, it'd be convenient if it used that token automatically when the access token expired to fetch another.