diff --git a/module/scrobble.js b/module/scrobble.js new file mode 100644 index 0000000..9f00a5d --- /dev/null +++ b/module/scrobble.js @@ -0,0 +1,22 @@ +// 听歌打卡 + +module.exports = (query, request) => { + const data = { + logs: JSON.stringify([{ + action: 'play', + json: { + download: 0, + end: 'playend', + id: query.songid, + sourceId: query.sourceid, + time: query.time, + type: 'song', + wifi: 0, + } + }]) + } + return request( + 'POST', `https://music.163.com/weapi/feedback/weblog`, data, + {crypto: 'weapi', cookie: query.cookie, proxy: query.proxy} + ) +}