In my application, I need to fetch recent songs played in Apple Music application. I am able to fetch recent songs via below code snippet.
let songsQuery: MPMediaQuery = MPMediaQuery.songs()
let songsArray: [MPMediaItem] = songsQuery.items!
let songsNSArray : NSArray = NSArray(array: songsArray)
let descriptor: NSSortDescriptor = NSSortDescriptor(key: MPMediaItemPropertyLastPlayedDate, ascending: false)
let sortedResults: NSArray = songsNSArray.sortedArray(using: [descriptor]) as NSArray
But this is giving me songs which are locally stored/downloaded in my Apple music application. If user having Apple music subscription then there might be possible that they play songs online and not download all the songs which they listen. I tried integrating Apple Music API,
GET https://api.music.apple.com/v1/me/recent/played
Followed steps mentioned in Apple documentation, https://developer.apple.com/library/content/documentation/NetworkingInternetWeb/ Conceptual/AppleMusicWebServicesReferenc…
Generated the key, and stuck at JWT token generation. The algorithm mentioned in Apple documentation is disabled in pod 'JSONWebToken' in this. I am not getting any proper demo or anything to call this API.
Also, I am not sure whether this API calling will provide all the recent songs data played online/offline from Apple music application.
It would be really good, if someone could help me to come up at some conclusion for this.