426需要升级Unirest和Express服务器

时间:2019-03-15 15:04:33

标签: java node.js express unirest

我已经使用express创建了一个简单的post poc,并尝试使用unirest库从Java程序中发布内容。

我收到服务器要求的426升级,如果我从邮递员发帖,则工作正常。

请帮助

var express = require('express')
,   app = express()
;

app.post('/', function (req, res) {
    console.log(req.body);
    res.status(200).send("hi")
});

app.listen(3000);

Java Side

HttpResponse<JsonNode> jsonResponse = Unirest.post("http://localhost:3000")
                .header("accept", "application/json")
                .field("parameter", "value")
                .field("foo", "bar")
                .asJson();
System.out.println(jsonResponse);

响应标题 WebSocket ++ / 0.7.0

0 个答案:

没有答案