1
jessynt 2015-12-25 14:31:06 +08:00 via iPhone
爬下来 (逃
|
2
plqws 2015-12-25 14:32:21 +08:00 1
用获取歌单列表的 api
参考: https://github.com/bluetomlee/NetEase-MusicBox/blob/master/src/api.py ``` # 用户歌单 def user_playlist(self, uid, offset=0, limit=100): action = 'http://music.163.com/api/user/playlist/?offset=' + str(offset) + '&limit=' + str(limit) + '&uid=' + str(uid) try: data = self.httpRequest('GET', action) return data['playlist'] except: return [] ``` |
4
terence4444 2015-12-25 14:44:53 +08:00 via iPhone 1
选择分享成链接再用浏览器打开, user agent 设成移动平台效果更佳
|
6
mhqschen OP @terence4444 哈哈哈我怎么没想到,感谢感谢,简单粗暴效果不错。
|
7
ivanchou 2015-12-25 14:52:34 +08:00
@plqws 顺便问一句,这个项目中的 api 文档还适用吗?为什么 curl 测试的时候返回是空,虽然测试过这个项目是可以用的,但是没看明白怎么用的。
|
8
ivanchou 2015-12-25 14:54:04 +08:00
|
9
ss098 2015-12-25 15:37:44 +08:00 via Android 1
|