我想检索当前在Spotify中播放的曲目/专辑的类型。
我看过Last.FM从专辑或曲目中获取类型,但似乎没有选择。
请有人帮我通过网络服务找到这种类型吗?
答案 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; }