1
xxxwyp OP 在线等,期待大神稍微抽点时间帮忙解决,抽感激不尽!
|
2
Debiancc 2018-10-15 09:41:47 +08:00
400 错误贴一下
|
3
liliya 2018-10-15 13:45:52 +08:00
var request = require("request");
var options = { method: 'POST', url: 'https://gzmss.iok.la/api/v2/users/signin', headers: { 'content-type': 'application/x-www-form-urlencoded' }, form: { user_name: 'yeungy', password: '123456' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); }); |