tidlers 0.1.1

A Rust library for interacting with the TIDAL music streaming API
Documentation
use crate::{
    client::{TidalClient, models::collection::CollectionTracksResponse},
    error::TidalError,
};

impl TidalClient {
    /// Retrieves the user's favorite tracks with optional limit
    pub async fn get_collection_favorites(
        &self,
        limit: Option<u32>,
    ) -> Result<CollectionTracksResponse, TidalError> {
        let url = format!("/users/{}/favorites/tracks", self.user_id()?);

        let body: String = self
            .request(reqwest::Method::GET, url)
            .with_country_code()
            .with_locale()
            .with_param("limit", limit.unwrap_or(9999).to_string())
            .with_base_url(Self::API_V1_LOCATION)
            .send_raw()
            .await?;

        Ok(serde_json::from_str(&body)?)
    }
}