我在使用 Spotify beta 9 时遇到问题。所有关于保存 SPTSession 和使用 RefreshTokenURL 更新(刷新)的教程似乎都已淘汰。这就是我获得 AuthViewController 的方式......
let spotifyAuthenticationViewController = SPTAuthViewController.authenticationViewController()
spotifyAuthenticationViewController.delegate = self
spotifyAuthenticationViewController.modalPresentationStyle = UIModalPresentationStyle.OverCurrentContext
spotifyAuthenticationViewController.definesPresentationContext = true
presentViewController(spotifyAuthenticationViewController, animated: true, completion: nil)
现在我需要创建一个会话,保存并定期刷新。我想保存在 CoreData 中。如果您以前做过此操作或有任何好的提示,请提供帮助