[][src]Function aspotify::endpoints::follow::get_followed_artists

pub async fn get_followed_artists<'_, '_>(
    token: &'_ AccessToken,
    limit: usize,
    after: Option<&'_ str>
) -> Result<CursorPage<Artist>, EndpointError<Error>>

Get followed artists.

Limit must be in the range [1..50]. after is the Cursor value given the previous time this endpoint was called. It is used to get the next page of items.

Reference.