getUserProfileArtists: Get artists a user is a fan of

Description Usage Arguments Value Examples

View source: R/usersProfile.R

Description

Get artists a user is a fan of. You can search for either a user ID or a user name.

Usage

1
2
3
4
5
getUserProfileArtists(
  user_id = NULL,
  user_name = NULL,
  client_id = Sys.getenv("JAMENDO_CLIENT_ID")
)

Arguments

user_id

User ID to seach for

user_name

User name to seach for

client_id

Defaults to System Environment variable "JAMENDO_CLIENT_ID"

Value

Returns a data frame which contains artists a user is a fan of. See https://developer.jamendo.com/v3.0/users/artists for more information.

Examples

1
2
3
## Example
 artistsFromName <- getUserProfileArtists(user_name = "claudod")
 artistsFromID <- getUserProfileArtists(user_id = "972174")

JamendoR documentation built on Nov. 7, 2021, 5:08 p.m.