节点HTTP POST对Netatmo的请求

时间:2015-11-24 19:35:10

标签: javascript node.js https http-post

我尝试使用NodeJS向我的Netatmo weatherstation云做一个http POST请求。它确实需要是http post而不是使用节点的请求'模块,因为我在AWS Lambda中使用它并且当前不支持该模块。

无论我尝试什么,我都会得到结果400的可怕{"错误":#34; invalid_request"}。我对这个问题感到茫然。

这是我的片段:

please.add.number.00

这是Cloud9的控制台日志:

var querystring = require('querystring');
var https = require('https');  
function getNetatmoData(callback, cardTitle){
        var sessionAttributes = {};

        var shouldEndSession = false;
        cardTitle = "Welcome";
        var speechOutput =""; 
        var repromptText ="";

        console.log("sending request to netatmo...")

        var payload = querystring.stringify({
            'grant_type'    : 'password',
            'client_id'     : clientId,
            'client_secret' : clientSecret,
            'username'      : userId,
            'password'      : pass,
            'scope'         : 'read_station'
      });

        var options = {
            host: 'api.netatmo.net',
            path: '/oauth2/token',
            method: 'POST',
            'Content-Type': 'application/x-www-form-urlencoded',
           'Content-Length': Buffer.byteLength(payload)

        };

        //console.log('making request with data: ',options);

        var req = https.request(options, function(res) {
                res.setEncoding('utf8');

                 console.log("statusCode: ", res.statusCode);
                 console.log("headers: ", res.headers);

                res.on('data', function (chunk) {
                    console.log("body: " + chunk);

                });

                res.on('error', function (chunk) {
                    console.log('Error: '+chunk);
                });

                res.on('end', function() {

                    speechOutput = "Request successfuly processed."
                    console.log(speechOutput);
                    repromptText = ""
                    //callback(sessionAttributes, buildSpeechletResponse(cardTitle, speechOutput, repromptText, shouldEndSession));
                });

            });

            req.on('error', function(e){console.log('error: '+e)});
            req.write(payload);

            req.end();
    }

1 个答案:

答案 0 :(得分:1)

Aarrgh ..我监督了一些事情。显然,在发出请求时需要在选项中设置标题。在headers变量中,Content-Type和Content-Length被设置。

如果没有进一步的说明,这里是options变量的正确工作:

var options = {
    host: 'api.netatmo.net',
    path: '/oauth2/token',
    method: 'POST',
    headers: {
        'Content-Type': 'application/x-www-form-urlencoded',
        'Content-Length': Buffer.byteLength(payload)
    }

};