Giter VIP home page Giter VIP logo

send_req's Introduction

send_req

a GUI tool to execute .http file

Getting Started

Usually, we use the .http file to test the API or other complex HTTP request. It's more convenient when change the request parameters than using curl.

There are many other tools to do api test, like postman, insomnia, etc. But these tools are foucs on sending/receiving HTTP request/response, they are not good at building the request body.

For example, if you want post a image with md5 checksum, you need to do these with external tools, like md5sum, or write a script to calculate the md5 checksum.

In send_req, you can do these in the .http file directly.

Just like this:

POST http://localhost:8080/upload
Content-Type: application/json

{
  "image" : "{{ image | dataurl }}",
  "md5" : " {{ image  | md5 }}"
}

in this example, when you select a image file in the GUI, the {{ image | dataurl }} will be replaced with the base64 encoded image data, and the {{ image | md5 }} will be replaced with the md5 checksum of the image.

1. Open .http file

init

2. Select a image file

select image

3. Post the request

post request

send_req's People

Contributors

elsejj avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.