Merge pull request #97 from joshka/page_auth

fix: authenticate in page_next/page_prev calls
This commit is contained in:
Scott Boggs 2023-04-22 06:35:23 -04:00 committed by GitHub
commit 1cb3b834cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -381,7 +381,7 @@ impl Mastodon {
}
/// Set the bearer authentication token
fn authenticated(&self, request: RequestBuilder) -> RequestBuilder {
pub(crate) fn authenticated(&self, request: RequestBuilder) -> RequestBuilder {
request.bearer_auth(&self.data.token)
}

View File

@ -26,7 +26,7 @@ macro_rules! pages {
"making API request"
);
let url: String = url.into(); // <- for logging
let response = self.mastodon.client.get(&url).send().await?;
let response = self.mastodon.authenticated(self.mastodon.client.get(&url)).send().await?;
match response.error_for_status() {
Ok(response) => {
let (prev, next) = get_links(&response, self.call_id)?;