Get the current user<U+2019>s followed artists.
get_my_followed_artists(
  limit = 20,
  after = NULL,
  authorization = get_spotify_authorization_code(),
  include_meta_info = FALSE
)Optional. The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.
Optional. The last artist ID retrieved from the previous request.
Required. A valid access token from the Spotify Accounts service. See the Web API authorization Guide for more details. Defaults to spotifyr::get_spotify_authorization_code(). The access token must have been issued on behalf of the current user. Getting details of the artists or users the current user follows requires authorization of the user-follow-read scope. See Using Scopes.
Optional. Boolean indicating whether to include full result, with meta information such as "total", and "limit". Defaults to FALSE.