nodejs https请求
我想发起一个node https请求,不是搭建服务器,但是发现
var options = {
host: 'api.weibo.com',
port: 443,
path: '/oauth2/access_token',
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'Content-Length': postdata.length
}
这样端口应该是对的,但是回调是说http请求。。。。 求解决