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",
可悲的是,这只能让你获得每首曲目的按键。
对于给定相册的曲目,在一个请求中获得标题(以及其他相关信息,如果可能)的最佳方法是什么?
答案 0 :(得分:2)
您正在寻找的是使用extras字段。我很惊讶album pages没有列出它,但有一个“轨道”额外。它会在你的结果中添加一个'tracks'数组,其中包含所有基本的音轨信息(包括“name”)。