我正在从 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"),它似乎根本不会影响结果。