如何获得专辑的类型为spotify应用程序

时间:2012-02-17 13:42:05

标签: javascript spotify last.fm musicbrainz

我想检索当前在Spotify中播放的曲目/专辑的类型。

我看过Last.FM从专辑或曲目中获取类型,但似乎没有选择。

请有人帮我通过网络服务找到这种类型吗?

2 个答案:

答案 0 :(得分:1)

我建议使用Echo Nest API作为Last.fm只使用用户输入的标签,这并不总是有用。

答案 1 :(得分:0)

您是否在MusicStore项目中遇到此问题?如果您这样做,请打开Album.cs,找到:

public Genre Genre { get; set; }
public Artist Artist { get; set; }

并添加虚拟属性,如:

public virtual Genre Genre { get; set; }
public virtual Artist Artist { get; set; }