修复听歌打卡接口 /scrobble 失效问题 #522

This commit is contained in:
binaryify
2019-07-03 22:33:32 +08:00
parent ec1400171e
commit d37906ec14
4 changed files with 8 additions and 4 deletions

View File

@ -7,7 +7,7 @@ module.exports = (query, request) => {
json: {
download: 0,
end: 'playend',
id: query.songid,
id: query.id,
sourceId: query.sourceid,
time: query.time,
type: 'song',
@ -15,6 +15,7 @@ module.exports = (query, request) => {
}
}])
}
return request(
'POST', `https://music.163.com/weapi/feedback/weblog`, data,
{crypto: 'weapi', cookie: query.cookie, proxy: query.proxy}