2

我正在从 Node.js 进程调用 Firebase REST API。我看到的问题是当帖子正文包含非 ASCII 字符时 POSTS 失败。尽管请求返回“200”状态和节点名称(实际上并未创建),但还是会出现这种情况。

我目前正在尝试这样的事情:

function push(path, object, callback) {
    console.log("Pushing to "+path+" on: "+firebase.host);
    var fullPath=firebase.basePath+path;
    console.log("fullPath="+fullPath);
    var body = JSON.stringify(object);
    var options = {
        host: firebase.host,
        port: 80,
        method: "POST",
        path: fullPath, //gamma.firebase.com/...
        agent: false,
        headers: {
            'content-type': 'application/json',
            'Content-Length': body.length,
         }
    };
    var req = http.request(options, function(response) {
        var result = "";
        console.dir(response.headers);
        response.on('data', function(chunk) {               
            result+=chunk;
        });
        response.on('end', function() {
            console.error("POST response result: "+result);
            try {
                callback(JSON.parse(result));
            } catch(e) {
                callback({ error: e });
            }
        });
        response.on('error', function(e) {
            console.error("POST response error: "+error);
            callback({error: e});
        });
    });
    req.on('error', function(error) {
        console.error("POST request error: "+error);
    });
    req.write(body);
    req.end();
}

“object”的内容可以很简单:

{"text": "test\u00a0text"}

我得到的结果是状态 200,以及一个看起来合理的子名,实际上并没有创建它。

我尝试将 content-type 设置为一堆不同的东西(例如,添加 ; charset="UTF-8"),它似乎根本不会影响结果。

4

1 回答 1

3

我们处理某些类型的输入的方式存在错误,导致错误的 200 状态。我们将很快推出修复程序。同时,要解决此问题,您可以省略发送 Content-Length 标头。这将允许您发布 ASCII 和非 ASCII 数据。

于 2012-05-29T22:07:11.950 回答