nodejs https请求
发布于 2年前 作者 scorpio 2671 次浏览

我想发起一个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请求。。。。 求解决

1 回复
回到顶部