var querystring=require('querystring');
var https=require('https');
//post要传递的数据
var body =querystring.stringify({
"device_num":"1",
"device_list":[
{
"id":"gh_c3f41afcc90a_f17959764f51b772",
"mac":"C89346A0EFF2",
"connect_protocol":"3",
"auth_key":"",
"close_strategy":"1",
"conn_strategy":"1",
"crypt_method":"0",
"auth_ver":"1",
"manu_mac_pos":"-1",
"ser_mac_pos":"-2",
"ble_simple_protocol": "0"
}
],
"op_type":"1"
});
//var string = JSON.stringify(body);
var options = {
url: 'https://api.weixin.qq.com/device/authorize_device?access_token=xIfsQltqcgSCpwqIPtB2aKZmcV2_tFeb-8Q-NkSufkj_7m3Jhk1xs9LJwIa5cbvrY49CdFpYMwy0IJXim-BX5oU3vRX5acw7leuBP2PdHXH5ahMeipZNObdeRM',
method: 'POST',
headers: {
"Content-Type": 'application/x-www-form-urlencoded',
"Content-Length": body.length
}
};
function callback(res){
console.log(res.headers);
console.log(res.statusCode)
res.on('data',function(data){
console.log(data.toString());
});
}
var req=https.request(options,callback);
req.write(body);
req.end();
报错:
events.js:141
throw er; // Unhandled 'error' event
^
Error: connect ECONNREFUSED 127.0.0.1:443
at Object.exports._errnoException (util.js:870:11)
at exports._exceptionWithHostPort (util.js:893:20)
at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1061:14)
First of all, you must understand error reporting and be able to understand error reporting prompts
This error means
127.0.0.1:443
Your connection was refusedBut the code accesses
https://api.weixin.qq.com
, why?Check your
/etc/hosts
file to see ifapi.weixin.qq.com
is tied to127.0.0.1