我正在寻找API,它将允许完成这些任务
- 在Apple Music中搜索歌曲
- 创建播放列表
- 将歌曲添加到播放列表
提前谢谢。
恐怕您现在要求做的事情是不可能的,因为从iTunes 12.2开始,我们只能从API搜索本地库,而不能搜索整个Apple Music。
如果你有你想在图书馆(本地或云端)播放的歌曲,你可以搜索并播放这样的歌曲:
tell application "iTunes"
set results to (every track whose name contains "Cumuli" and artist is "883")
repeat with tune in results
play tune
end repeat
end tell
然后你可以将检索到的曲调放入你想要的播放列表中,或者创建一个新的。以这篇文章为例。