访问 Pandora 播放数据
我知道 iPhone 开发者没有官方的 Pandora API,但我想知道是否有人找到了一种在 Objective-C 中访问用户播放数据的方法。例如歌曲、艺术家、电台等。
I know that there is no official Pandora API for iPhone devs, but I'm wondering if anyone has figured out a way to access user's playback data in objective-c. Things like songs, artists, stations, etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
至于直接访问数据:不。如果 Pandora 应用程序存储了类似的内容,您也许可以在越狱设备上访问其中的一些内容,但否则您就不走运了;应用程序被沙盒化,无法获取彼此的数据。
不过,您可以尝试从用户的个人资料页面中抓取信息 - 如果他们愿意向您提供该信息的 URL(格式为
pandora.com/people/[whoever]
),那么可能有您可以在那里收集相当多的数据。As to accessing the data directly: nope. You might be able to get to some of it on a jailbroken device, if the Pandora app stores things like that, but otherwise you’re out of luck; apps are sandboxed and can’t get at each others’ data.
You might, though, try scraping information from users’ profile pages—if they’re willing to give you the URL to that (in the format
pandora.com/people/[whoever]
), there’s probably a fair bit of data you can glean there.