Hi, . As my understading, I know that id: MusicItemID The unique identifier for the song. Threfore, I want to try to retreive the specific song I want by using MusicItemID :
let request = MusicCatalogResourceRequest<Song>(matching: \.id,
equalTo: //MusicItemID)
let response = try await request.response()
guard let song = response.items.first else { return }
However, where can I find the MusicItemID for the song I want ? Thank you so much