Vibed: error: 411长度要求



我试图获得服务器响应代码与下一个代码:

import std.stdio;
import vibe.core.log;
import vibe.http.client;
import vibe.stream.operations;
import vibe.http.status;
void main()
{
        requestHTTP("http://www.example.org/", (scope req) {
            req.method = HTTPMethod.POST;
        },
        (scope res) {
            logInfo("Response: %s", res.statusCode);
        }
    );
}

但我得到响应代码411,这意味着"所需长度"。我做错了什么?

使用以下方法解决了这个问题:req.method = HTTPMethod.GET;代替POST方法

相关内容

  • 没有找到相关文章

最新更新