0

Rdio API 仅通过 API 提供曲目列表的密钥。

例如,如果使用艺术家键调用 Rdio 的getAlbumsForArtist方法,您可能会得到类似于以下内容的响应:

{
 "status": "ok", 
 "result": [
  {
   "baseIcon": "album/a/8/2/000000000001e28a/1/square-200.jpg", 
   "releaseDate": "2007-07-10", 
   "artistUrl": "/artist/Justice/", 
   "duration": 2858, 
   "isClean": false, 
   "shortUrl": "http://rd.io/x/Qj5Dvck/", 
   "canStream": true, 
   "embedUrl": "https://rd.io/e/Qj5Dvck/", 
   "type": "a", 
   "price": "None", 
   "key": "a123530", 
   "icon": "http://img00.cdn2-rdio.com/album/a/8/2/000000000001e28a/1/square-200.jpg", 
   "canSample": true, 
   "name": "Justice", 
   "isExplicit": false, 
   "artist": "Justice", 
   "url": "/artist/Justice/album/Justice/", 
   "artistKey": "r80653", 
   "length": 12, 
   "trackKeys": [
    "t1555455", 
    "t1555488", 
    "t1555527", 
    "t1555555", 
    "t1555583", 
    "t1555618", 
    "t1555640", 
    "t1555663", 
    "t1555693", 
    "t1555727", 
    "t1555762", 
    "t1555798"
   ], 
   "canTether": true, 
   "displayDate": "Jul 10, 2007"
  }, 
  {
   "baseIcon": "album/f/2/d/0000000000451d2f/1/square-200.jpg", 
   "releaseDate": "2014-05-26", 

可悲的是,这只会让你得到每首曲目的钥匙。

在一个请求中获取给定专辑曲目的标题(以及其他相关信息,如果可能)的最佳方式是什么?

4

1 回答 1

2

您正在寻找的是使用extras字段。我有点惊讶专辑页面没有列出它,但有一个额外的“曲目”。它会在您的结果中添加一个“轨道”数组,其中包含所有基本轨道信息(包括“名称”)。

于 2015-01-29T01:45:55.807 回答