The Wayback Machine - https://web.archive.org/web/20220709220758/https://github.com/topics/rest-client
Skip to content
#

rest-client

Here are 1,148 public repositories matching this topic...

KaiPetzke
KaiPetzke commented Aug 11, 2020

Expected behaviour

The following code snippet:

    RestClient::Connection* conn = new RestClient::Connection("https://httpbin.org");
    RestClient::Response& r = conn->get("/get");
    for(auto& name : { "date", "Date" }) {
        try {
            std::string& value = r.headers.at(name);
            std::cout << name << ": \"" << value << "\"" << std::endl;
        } catch(st
good first issue
MarcThu
MarcThu commented Jul 6, 2022

Thanks for your work so far! I really like the idea of this plugin. It's one step ahead to use nvim as a complete IDE.

But if I am right, rest.nvim does not follow the RFC 2616 format completely.

The following request does not work, but should according to RFC:

GET /pub/WWW/ HTTP/1.1
Host: www.w3.org

It get

enhancement help wanted good first issue

Improve this page

Add a description, image, and links to the rest-client topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the rest-client topic, visit your repo's landing page and select "manage topics."

Learn more