Working with MusicKitJS V3, and with the extend
key being used, I'm trying to request the animated editorialVideo in my app.
this.musicKitInstance.api.music(
`v1/catalog/${this.musicKitInstance.storefrontId}/albums/${id}`,
{
extend: 'artistUrl,composerUrl,trackCount,editorialVideo,editorialArtwork',
}
)
Looking at how music.apple.com does it, this appears to be the correct format, but the API never returns the editorialVideo in the response. Which stands out as the API will return the artistUrl
in the response, just not the editorialVideo.
Is this a limitation of the API?