The Advanced REST client is a plugin under the Chrome browser that can send HTTP, HTTPS, and WebSocket requests. Search the Advanced REST Client under the Chrome store to find
If the search is not available to the CSDN download:
http://download.csdn.net/detail/li1669852599/9547748
1. Download plugin: Advanced Rest Client
2. Because the latest version of Chrome does not support the local installation of plug-ins, so we want to enable the developer mode 3. Change the plugin suffix name CRX to zip, unzip, and then click ' Load the extension being developed ' and select Unzip directory to load success 4.
5. Click ' Details ', select ' Create Shortcut ' 6.ok, now you can start the Advanced Rest client to debug the RESTful service at any time.
The Advanced REST Client interface
Advanced REST Client at Google Code address: http://code.google.com/p/chrome-rest-client/
Here's how the Advanced REST client sends the request
1. Sending an HTTP request
The http://httpbin.org/has a ready-made get, post interface that can be used directly
1.1 HTTP GET
Enter Http://httpbin.org/get in the URL bar
Click the "Send" button. After successful delivery, the advanced REST Client lists Request/response headers:
return Result:
1.2 HTTP POST
Enter Http://httpbin.org/post in the URL bar, select the "Post" type, enter data in the "Payload" field, and finally set "Content-type"
return Result:
2. Sending HTTPS requests
Use the same method as sending an HTTP request. https://httpbin.org/has a ready-made get, post interface, you can try it yourself
3. Send WebSocket Request
Advanced REST client supports sending WebSocket requests through ws://echo.websocket.org, which can be websocket tested
Click "Socket" on the left, then enter ws://echo.websocket.org in the URL bar
Click on the "Connect" button on the right. Once the connection is successful, the message can be sent
Enter "Test", then click the "Send" button
The first "test" is the request sent by the advanced REST client, and the second "test" is the response returned by the Server
===================================== Welcome to join the discussion group Study Q Group: 131874993 =====================================
Googel Browser Impersonation Send request tool--advanced REST Client