Skip to content

madskristensen/RestClientVS

Repository files navigation

Rest Client for Visual Studio

IMPORTANT: This extension can only be installed in Visual Studio 2022 up until version 17.4. In version 17.5 support for .http files were built in to Visual Studio.

Download this extension from the VS Marketplace or get the CI build.


REST Client allows you to send HTTP request and view the response in Visual Studio directly. Based on the popular VS Code extension Rest Client by Huachao Mao

Screenshot

The .http file

Any files with the extension .http or .rest is the entry point to creating HTTP requests.

Here's an example of how to define the requests with variables and code comments.

@hostname = localhost
@port = 8080
@host = {{hostname}}:{{port}}
@contentType = application/json

POST https://{{host}}/authors/create
Content-Type:{{contentType}}

{
    "name": "Joe",
    "permissions": "author"
}

###

# Comments
GET https://{{host}}/authors/

###

GET https://www.bing.com

This is what it looks like in the Blue Theme.

Document

Notice the green play buttons showing up after each URL. Clicking those will fire off the request and display the raw response on the right side of the document.

Tooltip

You can also right-click to find the Send Request command or use the Ctrl+Alt+S keyboard shortcut.

Context Menu

You can set the timeout of the HTTP requests from the Options dialog.

Options

How can I help?

If you enjoy using the extension, please give it a ★★★★★ rating on the Visual Studio Marketplace.

Should you encounter bugs or if you have feature requests, head on over to the GitHub repo to open an issue if one doesn't already exist.

Pull requests are also very welcome, since I can't always get around to fixing all bugs myself. This is a personal passion project, so my time is limited.

Another way to help out is to sponser me on GitHub.

About

No description, website, or topics provided.

Resources

License

Code of conduct

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published

Languages