searchArtist {Rspotify} | R Documentation |
function to get basic info about a searched artist
searchArtist(artist_name, token)
artist_name |
Name of the artist |
token |
An OAuth token created with |
## Not run:
my_oauth <- spotifyOAuth(app_id="xxxx",client_id="yyyy",client_secret="zzzz")
save(my_oauth, file="my_oauth")
load("my_oauth")
foofighters <- searchArtist("Foo+fighters",token=my_oauth)
## End(Not run)