I am currently trying to read all of a users Library Playlists. What I need are the following:
Id,Name,Description,Songs and Artwork. The Endpoint "https://api.music.apple.com/v1/me/library/playlists?limit=100"
returns the following response:
{
"data": [
{
"id": "p.oOzAa4gIlaQaBVx",
"type": "library-playlists",
"href": "\/v1\/me\/library\/playlists\/p.oOzAa4gIlaQaBVx",
"attributes": {
"name": "Drake",
"description": {
"standard": ""
},
"hasCatalog": true,
"canEdit": true,
"playParams": {
"id": "p.oOzAa4gIlaQaBVx",
"kind": "playlist",
"isLibrary": true,
"globalId": "pl.u-Zmblx9rU02m2DXJ"
},
"dateAdded": "2017-10-30T21:39:45Z"
}
},
etc...
As you can see the Artwork Attribute is non-existent despite the API documentation specifying artwork as an attribute (https://developer.apple.com/documentation/applemusicapi/libraryplaylist/attributes
)
I tried using ?include=artwork
even though it's an attribute and not a relationship but that didn't work. Any ideas how I can retrieve the artwork? If I can't get it from the apple music API is there any other way I could get the artwork? I've been stuck on this for a while so any help is appreciated!