Cookie format: key=value;key2=value2;key3=value3
Note information will be stored in cookies
HTTP Interface Test Tool Features
Supported request methods
Comprehensive coverage of RFC standard methods:
? GET - Get server resources
? POST - Submit data to the server
? PUT - Replace the target resource
? DELETE - Delete the specified resource
? HEAD - Get response headers only
? PATCH - Partially update a resource
? OPTIONS - Queries the server for supported methods
? TRACE - Diagnose request paths Advanced Request Configuration
Precise control over each request detail:
? Cookie management: support for manual input or copy directly from the browser developer tools
? Header Customisation: Add any HTTP header field, including Authorization and other authentication information.
? Proxy settings: support for sending requests through proxy servers
? Parameter encoding: automatically handle URL encoding and special characters. HTTP protocol core features
Perfect request processing mechanism:
? URL parameters: GET requests support question marks.(?) Post splicing parameters
? Request body data: POST/PUT support a variety of formats:
- application/x-www-form-urlencoded
- application/json
- multipart/form-data
- text/xml
? Complete Header system: Includes User-Agent, Accept and other standard fields. Response analysis function
Multi-dimensional results display:
? Status code: display 200/404/500 and other standard status codes
? Response header: complete display of the server returned Header information
? Response body: support JSON formatting, syntax highlighting
? Time statistics: record the request time consumed and the amount of data transferred. Typical application scenarios
? Web API development debugging
? RESTful interface function verification
? Front-end and back-end data interaction testing
? Third-party interface integration verification
? Interface documentation supporting test cases