プロキシ URL を指定したにもかかわらず、POST リクエストが Fiddler に送信されません。
router.get('/', function (req, res) {
console.log("in /api/");
request(
{
method: "POST",
uri: "http://api(...)'", //I cut the real url
proxy: "http://127.0.0.1:8888" //
},
function (err, response, body) {
// console.log(response);
res.send(response); // this gives me a real response
});
});
注: 私の URL: http://node.dev:8080/apiは localhost を指しています。
私が間違っていることは何か分かりますか?