Itunes api音乐商店列表

时间:2015-11-13 07:31:02

标签: ios iphone angularjs

我正在学习角度,因为我使用itunes api作为我的参考。我想列出音乐专辑,然后点击我要显示详细信息的相册。我找到了一个网址,但是没有唯一的ID。我希望从相册列表中的每个ID中获取唯一ID。我在下面加了这个网址,

enter link description here

在这个json中,我没有从列表的每个项目中获取唯一ID。请提供正确的网址,以获取每个项目的信息和详细信息视图。如果我得到正确的网址,我会练习小角度的小应用程序。

2 个答案:

答案 0 :(得分:0)

您关联的网址的第一个结果是:

{"wrapperType":"collection", "collectionType":"Album",
{""artistId":211192870, "collectionId":211192863,
{""artistName":"Louis Prima & Gia Maione", "collectionName":"Let's
{"Fly With Mary Poppins", "collectionCensoredName":"Let's Fly With
{"Mary Poppins",
{""artistViewUrl":"https://itunes.apple.com/us/artist/gia-
{"maione/id211192870?uo=4",
{""collectionViewUrl":"https://itunes.apple.com/us/album/lets-fly-
{"with-mary-poppins/id211192863?uo=4", "artworkUrl60":"http://is2.
{"mzstatic.com/image/thumb/Music/v4/5e/4c/b0/5e4cb014-26cd-
{"7b64-6dd6-b845750f88ce/source/60x60bb.jpg", "artworkUrl100":"htt
{"p://is2.mzstatic.com/image/thumb/Music/v4/5e/4c/b0/5e4cb014
{"-26cd-7b64-6dd6-b845750f88ce/source/100x100bb.jpg",
{""collectionPrice":9.99, "collectionExplicitness":"notExplicit",
{""trackCount":12, "copyright":"℗ 1965 Buena Vista Records",
{""country":"USA", "currency":"USD",
{""releaseDate":"2007-01-16T08:00:00Z", "primaryGenreName":"Jazz"}

以下是从该结果中收藏ID 获取这些相册详情的网址:

https://itunes.apple.com/lookup?id=211192863&entity=album

答案 1 :(得分:0)

我使用

解决了这个问题

https://itunes.apple.com/search?term=jack+johnson&media=music

从此我获得了跟踪ID,并传入

https://itunes.apple.com/lookup?id=trackId&media=music

我通过了这个网址并获得了详细信息页面。谢谢