美文网首页
node https 请求带参数

node https 请求带参数

作者: ouxuwen | 来源:发表于2018-04-27 17:41 被阅读0次
var https = require('https');
var querystring = require('querystring');
//需要发送的参数
    let post_data = querystring.stringify({
        'image' : image,
    })
    //建立http请求
    let post_req = https.request({
        hostname: "aip.baidubce.com",
        mathod: "post",
        port: 443,
        path: `/rest/2.0/ocr/v1/numbers?access_token=${token}`,
        headers: {
            "Content-Type": "application/x-www-form-urlencoded",
            'Content-Length': Buffer.byteLength(post_data) //参数长度
        }
    }, (res) => {
       
        res.setEncoding('utf8');
        res.on('data', (d) => {
            console.log(d)
        });
    
    }).on('error', (e) => {
        console.error(e);
    });

    //在这里写入需要发送的参数
    post_req.write(post_data);
    post_req.end();

相关文章

网友评论

      本文标题:node https 请求带参数

      本文链接:https://www.haomeiwen.com/subject/carilftx.html