Node.jsプロセスからFirebaseRESTAPIを呼び出しています。私が見ている問題は、投稿の本文に非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();
}
「オブジェクト」の内容は、次のように単純にすることができます。
{"text": "test\u00a0text"}
私が返す結果は、ステータス200であり、実際には作成されない、見栄えの良い子の名前です。
content-typeをさまざまなものに設定してみました(たとえば、; charset = "UTF-8"を追加)が、結果にはまったく影響しないようです。