最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Any way to get Spotify Artist's header image? - Stack Overflow

programmeradmin0浏览0评论

Is there any way to get the image used for the background of an artist page in PHP or JS? It's different from the normal artist image, so I don't think it's included in the artist JSON from the API.

Example on an artist page:

The link for this image can be found by inspecting the elements of an artist page and searching "artist-header", which is the element with the image as a background-image.

I tried simply loading the artist's open.spotify page, searching for the "artist-header" class, then taking the background-image style attribute. However, for some reason calling file_get_contents() on the artist's page returned a pletely different page. This page did not contain the background image.

Is there any way to get the image used for the background of an artist page in PHP or JS? It's different from the normal artist image, so I don't think it's included in the artist JSON from the API.

Example on an artist page:

The link for this image can be found by inspecting the elements of an artist page and searching "artist-header", which is the element with the image as a background-image.

I tried simply loading the artist's open.spotify page, searching for the "artist-header" class, then taking the background-image style attribute. However, for some reason calling file_get_contents() on the artist's page returned a pletely different page. This page did not contain the background image.

Share Improve this question asked Dec 15, 2019 at 16:45 okamiaaronokamiaaron 1001 gold badge1 silver badge8 bronze badges 1
  • 1 It's going through a CDN. Maybe there's a step in between to stop this automated scraping? – evolutionxbox Commented Dec 15, 2019 at 16:50
Add a ment  | 

3 Answers 3

Reset to default 5

The artist header image is now at:

document.querySelector('div[data-testid="background-image"]').style.backgroundImage.slice(5, -2)

Open the profile of the artist you're nabbing the cover banner from on your browser and fire up the inspect/developer tools interface. Hit CTRL-F and type in 'background', scroll a little through the results, and when you get to the line seen in the screenshot attached, copy and paste the url within the brackets into a new tab, and voila! All yours to save and customise.

Screenshot of Spotify artist profile of 808 State

You can use <element>.style["<parameter>"] to get to the contents of <element>'s style. It also allows you to change that value.


Extracting link to the image:

document.getElementsByClassName('artist-header')[0].style["background-image"].slice(5,-2)
发布评论

评论列表(0)

  1. 暂无评论