我正在寻找允许执行这些任务的 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
然后您可以将检索到的歌曲放入您想要的播放列表中,或者创建一个新的。看看这篇文章的例子。