admin管理员组文章数量:1345295
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.
- 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
3 Answers
Reset to default 5The 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)
本文标签: javascriptAny way to get Spotify Artist39s header imageStack Overflow
版权声明:本文标题:javascript - Any way to get Spotify Artist's header image? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743808635a2542647.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论