Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

NeteaseCloudMusicApi

Package Overview
Dependencies
Maintainers
1
Versions
336
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

NeteaseCloudMusicApi - npm Package Compare versions

Comparing version 2.5.9 to 2.6.0

3

CHANGELOG.MD
# 更新日志
### 2.6.0 | 2017.6.25
修复签到接口
### 2.5.9 | 2017.6.14

@@ -3,0 +6,0 @@ 增加启动说明页

2

package.json
{
"name": "NeteaseCloudMusicApi",
"version": "2.5.9",
"version": "2.6.0",
"description": "网易云音乐 NodeJS 版 API",

@@ -5,0 +5,0 @@ "scripts": {

@@ -16,6 +16,30 @@ # 网易云音乐 API

## 版本新特性
[sqaiyan/netmusic-node](https://github.com/sqaiyan/netmusic-node)
## 版本新特性
### 2.6.0 | 2017.6.25
修复签到接口
### 2.5.9 | 2017.6.14
增加启动说明页
### 2.5.8 | 2017.6.1
修复若干细节问题
### 2.5.7 | 2017.5.22
修复若干问题
### 2.5.6 | 2017.5.14
增加动态消息接口
### 2.5.5 | 2017.5.10
修复 mv 排行榜接口崩溃问题
### 2.5.4 | 2017.5.5
新增点赞接口,更新文档
### 2.5.3 | 2017.5.2
修复歌手单曲数据空白问题和文档获取歌手单曲url 描述问题,更新文档
### 2.5.0 | 2017.4.29

@@ -39,5 +63,8 @@ 增加 mv/专辑/歌单评论接口,增加云盘相关接口,增加获取用户动态/信息接口,增加关注/粉丝列表接口,增加收藏歌单接口,增加相似 mv/歌曲/用户接口,增加 banner 接口,增加刷新登录接口,增加电台相关接口,补充评论接口,更新文档

### 2.2.0 | 2017.4.14
### 2.2.0 |2017.4.14
增加私人 FM, 喜欢歌曲,垃圾桶,每日签到等接口,更新文档
### 2.1.3 | 2017.4.6
改善文档
### 2.1.0 | 2017.4.6

@@ -49,2 +76,4 @@ 增加获取评论接口以及对应单元测试,增加更新日志

## 功能特性

@@ -51,0 +80,0 @@ 1. 登录

// 签到
const express = require("express")
const express = require('express')
const router = express()
const { createWebAPIRequest } = require("../util/util")
const { createWebAPIRequest } = require('../util/util')
router.get("/", (req, res) => {
router.get('/', (req, res) => {
const cookie = req.get('Cookie') ? req.get('Cookie') : ''
let type = req.query.type || 0 //0为安卓端签到 3点经验,1为网页签到,2点经验
const data = {
"csrf_token": ""
csrf_token: '',
type
}

@@ -15,7 +17,5 @@ // {'android': {'point': 3, 'code': 200}, 'web': {'point': 2, 'code': 200}}

let type = req.query.type || 0 //0为安卓端签到 3点经验,1为网页签到,2点经验
const action = `/weapi/point/dailyTask?type=${type}`
createWebAPIRequest(
'music.163.com',
action,
'/weapi/point/dailyTask',
'POST',

@@ -29,4 +29,2 @@ data,

module.exports = router
module.exports = router
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc