我正在尝试获取艺术家的图像/肖像。但是,使用 Artist.fromURI() 将返回一个艺术家对象,但没有肖像。我在 StackOverflow 上阅读了一些其他帖子,有人建议使用:
sp.core.browseURI()
因为 fromURI 仅出于性能原因检索基本信息。然而最近 spotify 声明我们不再被允许使用 sp.core 调用。那么替代方案是什么?
相反,这就是我正在使用的:
models.Artist.fromURI(uri, function(artist) {
// this is called when artist is loaded but the following shows blank even
// when the artist has an image
console.log(artist.data.portrait);
});