dsbj66959 2017-03-11 15:41
浏览 62
已采纳

无法将带有自定义标头的HTTP POST发送到外部服务器

I am currently working on an Alexa skill using AWS Lambda, and all has been working perfectly except for one thing. I can't seem to successfully POST HTTP param's / custom headers to my server. It can grab pull the information perfectly, but I cannot figure out why it is not sending the parameters / custom headers.

My code for sending a HTTP POST request looks like this :

function httpGetMall(latitude, longitude, callback) {

    var options = {
        host: 'myserver.com',
        path: '/path/to/script.php',
        auth: 'myAuthenticationPassword'.toString('base64'),
        method: 'POST', 
        headers: {'latitude': latitude.toString(), 'longitude': longitude.toString()}
    };

    var req = http.request(options, (res) => {

        var body = '';

        res.on('data', (d) => {
            body += d;
        });

        res.on('end', function () {
            callback(body);
        });

    });
    req.end();

    req.on('error', (e) => {

    });
}

I know for a fact the function is being called correctly, as it returns the data on callback perfectly.

On my php script, I am attempting to grab the values like so :

$latitude = $_POST['latitude'];
$longitude = $_POST['longitude'];

I have tried manually setting the latitude and longitude inside the function to see if they were not getting passed in, but the server still never received them.

Any help would be greatly appreciated. Thanks!

  • 写回答

1条回答 默认 最新

  • doucang2871 2017-03-11 15:52
    关注

    POST data is not sent in headers. It is sent as an encoded string in the body. In your code, you would encode it properly and then send it with req.write(). There's a POST code example in the nodejs doc for http.request().

    Here's how you could modify your code to do it properly:

    var querystring = require('querystring');
    
    function httpGetMall(latitude, longitude, callback) {
    
        var options = {
            host: 'myserver.com',
            path: '/path/to/script.php',
            auth: 'myAuthenticationPassword'.toString('base64'),
            method: 'POST', 
        };
    
        var req = http.request(options, (res) => {
    
            var body = '';
    
            res.on('data', (d) => {
                body += d;
            });
    
            res.on('end', function () {
                callback(null, body);
            });
    
        });
    
        req.on('error', (e) => {
            callback(e);
        });
    
        // format the data appropriately for the POST body
        var postData = querystring.stringify({latitude: latitude, longitude: longitude});
        // write the POST body
        req.write(postData);
        req.end();
    }
    

    Note: You also need to add proper error handling. Probably you should make your callback into a typical nodejs async callback that takes an error as the first argument and data as the second. Then, you can just call callback(err) when you get an error and callback(null, body) when you get the response data. I've modified my answer to show this also.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料