2016-10-16 36 views
2

我在Spotify的开发人员应用程序部分中创建了一个客户端ID和密钥。我引用这个文件并想通过选择多个艺术家来扩展它。在R中为多个艺术家访问Spotify API

https://www.r-bloggers.com/the-eurovision-2016-song-contest-in-an-r-shiny-app/

在这个例子中,他们只选择1名艺术家ID,但也有一些漏洞此,

1)你如何获得艺术家的名字,而不是艺术家ID,因为我可以” t找到艺术家ID的任何地方的词汇表键?

2)你如何选择多个艺术家而不是一个。

例如,我该如何选择Frank Sinatra和Elvis Presley?

代码如下:

library(httr) 

clientID = '#############################' 
secret = '########################' 

response = POST(
    'https://accounts.spotify.com/api/token', 
    accept_json(), 
    authenticate(clientID, secret), 
    body = list(grant_type = 'client_credentials'), 
    encode = 'form', 
    verbose() 
) 

mytoken = content(response)$access_token 
## Frank Sinatra spotify artist ID 
artistID = '1Mxqyy3pSjf8kZZL4QVxS0' 

HeaderValue = paste0('Bearer ', mytoken) 

URI = paste0('https://api.spotify.com/v1/artists/', artistID) 
response2 = GET(url = URI, add_headers(Authorization = HeaderValue)) 
Artist = content(response2) 
Artist 

我在这里的目标是让所有有关每个艺术家的歌曲,如danceability属性等

任何帮助将是巨大的,谢谢!

回答

1

如果你问如何才能得到你在你的问题中创建的响应对象的艺术家名字,你可以这样做是这样的:

> Artist$name 

“弗兰克·西纳特拉”

如果您问如何通过艺术家姓名查询API,则相关的endpoint是按姓名搜索的艺术家,这将允许您查找ID(因为API是基于ID而非搜索功能的,我需要那个):

/v1/search?type=artist 

endpoint让一些艺术家是:

/v1/artists?ids={ids} 

他们实际上提供基于名称的(单)歌手搜索的一个很好的jsfiddle例如:

http://jsfiddle.net/JMPerez/0u0v7e1b/

这个搜索文档页面显示他们如何构建搜索URI:

https://developer.spotify.com/web-api/search-item/

全部放在一起

这里的搜索基于艺术家的名字在河的全面工作示例比方说,我们要搜索克拉肯尔,书呆子说唱之王:

artistName = 'ytcracker' 

HeaderValue = paste0('Bearer ', mytoken) 

URI = paste0('https://api.spotify.com/v1/search?query=', artistName,'&offset=0&limit=20&type=artist') 
response2 = GET(url = URI, add_headers(Authorization = HeaderValue)) 
Artist = content(response2) 
Artist 

Artist对象具有ID,URI,流派,追随者的数量,以及其他足以探索Spotify的API的休息这艺术家,他们的专辑,以及相关的艺术家,等等,等等:

$artists 
$artists$href 
[1] "https://api.spotify.com/v1/search?query=ytcracker&offset=0&limit=20&type=artist" 

$artists$items 
$artists$items[[1]] 
$artists$items[[1]]$external_urls 
$artists$items[[1]]$external_urls$spotify 
[1] "https://open.spotify.com/artist/1x82Mu3wakMkldMW5kEiP4" 


$artists$items[[1]]$followers 
$artists$items[[1]]$followers$href 
NULL 

$artists$items[[1]]$followers$total 
[1] 2386 


$artists$items[[1]]$genres 
$artists$items[[1]]$genres[[1]] 
[1] "nerdcore" 


$artists$items[[1]]$href 
[1] "https://api.spotify.com/v1/artists/1x82Mu3wakMkldMW5kEiP4" 

$artists$items[[1]]$id 
[1] "1x82Mu3wakMkldMW5kEiP4" 

$artists$items[[1]]$images 
$artists$items[[1]]$images[[1]] 
$artists$items[[1]]$images[[1]]$height 
[1] 640 

$artists$items[[1]]$images[[1]]$url 
[1] "https://i.scdn.co/image/da66c87cfb6f7e400979b53f12c0b0cb029424a8" 

$artists$items[[1]]$images[[1]]$width 
[1] 640 


$artists$items[[1]]$images[[2]] 
$artists$items[[1]]$images[[2]]$height 
[1] 300 

$artists$items[[1]]$images[[2]]$url 
[1] "https://i.scdn.co/image/4055cb39744f85c94838841eecc74563b94a00d1" 

$artists$items[[1]]$images[[2]]$width 
[1] 300 


$artists$items[[1]]$images[[3]] 
$artists$items[[1]]$images[[3]]$height 
[1] 64 

$artists$items[[1]]$images[[3]]$url 
[1] "https://i.scdn.co/image/d46121137f358701b55dcdd03ba9a632ea7e4879" 

$artists$items[[1]]$images[[3]]$width 
[1] 64 



$artists$items[[1]]$name 
[1] "YTCracker" 

$artists$items[[1]]$popularity 
[1] 31 

$artists$items[[1]]$type 
[1] "artist" 

$artists$items[[1]]$uri 
[1] "spotify:artist:1x82Mu3wakMkldMW5kEiP4" 


$artists$items[[2]] 
$artists$items[[2]]$external_urls 
$artists$items[[2]]$external_urls$spotify 
[1] "https://open.spotify.com/artist/2RnAr4QItmKW4vFKip3m8v" 


$artists$items[[2]]$followers 
$artists$items[[2]]$followers$href 
NULL 

$artists$items[[2]]$followers$total 
[1] 36 


$artists$items[[2]]$genres 
list() 

$artists$items[[2]]$href 
[1] "https://api.spotify.com/v1/artists/2RnAr4QItmKW4vFKip3m8v" 

$artists$items[[2]]$id 
[1] "2RnAr4QItmKW4vFKip3m8v" 

$artists$items[[2]]$images 
list() 

$artists$items[[2]]$name 
[1] "YTCracker & Hairetsu" 

$artists$items[[2]]$popularity 
[1] 9 

$artists$items[[2]]$type 
[1] "artist" 

$artists$items[[2]]$uri 
[1] "spotify:artist:2RnAr4QItmKW4vFKip3m8v" 



$artists$limit 
[1] 20 

$artists$`next` 
NULL 

$artists$offset 
[1] 0 

$artists$previous 
NULL 

$artists$total 
[1] 2 

请注意,我在搜索结果的大小设置一个可选的限制。另外请注意,如果您喜欢,可以使用相同的搜索结果查询专辑封面图片等内容,就像在jsFiddle示例中一样。

多Arists

好了,现在我有一个基于我的搜索,并从你的问题的ID为西纳特拉的克拉肯尔ID,我想同时查询两位艺术家的API。我可以这样做,如下所示。只要你有ID,你也可以为2个以上的艺术家做这件事。

URI = paste0('https://api.spotify.com/v1/artists?ids=', Artist$artists$items[[2]]$id,",", '1Mxqyy3pSjf8kZZL4QVxS0') 
response2 = GET(url = URI, add_headers(Authorization = HeaderValue)) 
Artists = content(response2) 
$artists 
$artists[[1]] 
$artists[[1]]$external_urls 
$artists[[1]]$external_urls$spotify 
[1] "https://open.spotify.com/artist/2RnAr4QItmKW4vFKip3m8v" 


$artists[[1]]$followers 
$artists[[1]]$followers$href 
NULL 

$artists[[1]]$followers$total 
[1] 36 


$artists[[1]]$genres 
list() 

$artists[[1]]$href 
[1] "https://api.spotify.com/v1/artists/2RnAr4QItmKW4vFKip3m8v" 

$artists[[1]]$id 
[1] "2RnAr4QItmKW4vFKip3m8v" 

$artists[[1]]$images 
list() 

$artists[[1]]$name 
[1] "YTCracker & Hairetsu" 

$artists[[1]]$popularity 
[1] 9 

$artists[[1]]$type 
[1] "artist" 

$artists[[1]]$uri 
[1] "spotify:artist:2RnAr4QItmKW4vFKip3m8v" 


$artists[[2]] 
$artists[[2]]$external_urls 
$artists[[2]]$external_urls$spotify 
[1] "https://open.spotify.com/artist/1Mxqyy3pSjf8kZZL4QVxS0" 


$artists[[2]]$followers 
$artists[[2]]$followers$href 
NULL 

$artists[[2]]$followers$total 
[1] 1204440 


$artists[[2]]$genres 
$artists[[2]]$genres[[1]] 
[1] "adult standards" 

$artists[[2]]$genres[[2]] 
[1] "brill building pop" 

$artists[[2]]$genres[[3]] 
[1] "christmas" 

$artists[[2]]$genres[[4]] 
[1] "easy listening" 

$artists[[2]]$genres[[5]] 
[1] "jazz christmas" 

$artists[[2]]$genres[[6]] 
[1] "lounge" 

$artists[[2]]$genres[[7]] 
[1] "mellow gold" 

$artists[[2]]$genres[[8]] 
[1] "soft rock" 

$artists[[2]]$genres[[9]] 
[1] "soul" 

$artists[[2]]$genres[[10]] 
[1] "swing" 

$artists[[2]]$genres[[11]] 
[1] "vocal jazz" 


$artists[[2]]$href 
[1] "https://api.spotify.com/v1/artists/1Mxqyy3pSjf8kZZL4QVxS0" 

$artists[[2]]$id 
[1] "1Mxqyy3pSjf8kZZL4QVxS0" 

$artists[[2]]$images 
$artists[[2]]$images[[1]] 
$artists[[2]]$images[[1]]$height 
[1] 650 

$artists[[2]]$images[[1]]$url 
[1] "https://i.scdn.co/image/fc4e0f474fb4c4cb83617aa884dc9fd9822d4411" 

$artists[[2]]$images[[1]]$width 
[1] 999 


$artists[[2]]$images[[2]] 
$artists[[2]]$images[[2]]$height 
[1] 416 

$artists[[2]]$images[[2]]$url 
[1] "https://i.scdn.co/image/883de3e492364891543bc0313ffe516626778a16" 

$artists[[2]]$images[[2]]$width 
[1] 640 


$artists[[2]]$images[[3]] 
$artists[[2]]$images[[3]]$height 
[1] 130 

$artists[[2]]$images[[3]]$url 
[1] "https://i.scdn.co/image/810f29651e05c9eae5a31f8151c2e05dc46390f9" 

$artists[[2]]$images[[3]]$width 
[1] 200 


$artists[[2]]$images[[4]] 
$artists[[2]]$images[[4]]$height 
[1] 42 

$artists[[2]]$images[[4]]$url 
[1] "https://i.scdn.co/image/a283ecdc6252ae305c53d283846cae2e8b22e94c" 

$artists[[2]]$images[[4]]$width 
[1] 64 



$artists[[2]]$name 
[1] "Frank Sinatra" 

$artists[[2]]$popularity 
[1] 77 

$artists[[2]]$type 
[1] "artist" 

$artists[[2]]$uri 
[1] "spotify:artist:1Mxqyy3pSjf8kZZL4QVxS0" 
+1

这是伟大的,谢谢 –

+0

我可以问这在一个单独的职位,但如何你得到的艺术家的歌曲音频功能?我知道这是参考:https://developer.spotify.com/web-api/get-several-audio-features/,但在R @ Hack-R中使用它很麻烦 –

相关问题