我正在使用最新的Spotify SDK构建应用,它工作正常,但现在我希望将 LoginUser的元数据作为displayName,生日和国家/地区一样,也希望将音轨元数据作为艺术家,歌曲名称,专辑,YearFromAlbum(如果可能的话),我只能获得曲目的URI,持续时间,播放?洗牌?,重复?
我也跟着这个tutorial并阅读了很多内容: developer.spotify.com/android-sdk-docs/index.html?com/spotify/sdk/android/ 但没什么。
感谢您的帮助和时间。 问候。
PS:我通过WebView登录
答案 0 :(得分:4)
Spotify SDK目前没有元数据查找或播放列表管理功能,因为您需要使用Spotify Web API
您可以直接调用API或使用这样的包装器Spotify Web API for Android
答案 1 :(得分:2)
将Track的元数据设为Artist,SongName,Album,YearFromAlbum
您需要使用此处记录的网络API:https://developer.spotify.com/web-api/endpoint-reference/
我希望将LoginUser的元数据作为displayName,birthday和country
'/ v1 / me'端点应该尽可能多地覆盖它 https://developer.spotify.com/web-api/get-current-users-profile/
由于Spotify没有可以直接用于web apis的java库,你需要自己制作或选择这里列出的一个java / android库:
https://developer.spotify.com/web-api/code-examples/#libraries