1

我无法使用 Gnome 的 libsoup 发送 POST 请求。GET 请求我可以做得很好我只是不确定如何获得一个工作的帖子请求。

 _httpSession = new Soup.Session();

        let url = "http://localhost:3000/api/auth/register/org";
        var body = {body:"?how to add"}

        let message = Soup.Message.new('POST', url);

        message.set_request('application/json', 2,body);
        _httpSession.queue_message(message, function (_httpSession, message){
            //log res
            global.log(message.response_body.data)

        });

这就是我现在所拥有的。我不知道如何添加帖子请求的正文。文档说 set_request 需要 4 个参数,但我收到一个错误,说如果我添加 body.length,它需要 3 个。

4

1 回答 1

0

 _httpSession = new Soup.Session();

        let url = "http://localhost:3000/api/auth/register/org";
        var body = `{"user":"tom","pass":"1234"}`

        let message = Soup.Message.new('POST', url);

        message.set_request('application/json', 2,body);
        _httpSession.queue_message(message, function (_httpSession, message){
            //log res
            global.log(message.response_body.data)

        });

对于任何试图弄清楚这一点的人来说,body 必须是一个创建为看起来像 json 对象的字符串。我看到的所有例子都只是在说

body="user=this"

这是不正确的。

于 2020-02-17T16:36:41.457 回答