The Linux command simulates a GET or POST request for HTTP

Source: Internet
Author: User

HTTP request refers to the client to the server request message, the HTTP request is mainly divided into get or post two, under the Linux system can use the curl and the wget command to simulate HTTP requests.

GET Request:

1. Use the Curl command:

Curl "http://www.baidu.com" if the URL here points to a file or a picture can be downloaded directly to the local

Curl-i "http://www.baidu.com" Show All information

Curl-l "http://www.baidu.com" only displays header information

Curl-v "Http://www.baidu.com" shows the full process of GET request parsing

2. Use the wget command:

wget "http://www.baidu.com" can also be

POST request

1, using the Curl command (through the-d parameter, the access parameters in the inside)

Curl-d "Param1=value1&m2=value2" "http://www.baidu.com"

2, use wget command: (--post-data parameter to achieve)

wget--post-data ' User=tom&password=password ' http://www.baidu.com

This is how Linux simulates the GET or POST request for HTTP, so the Linux system can send messages to the remote server as well.   

Example: wget--post-data= "User=tom&password=password" http://www.baidu.com/login

Curl can send formatting requests such as JSON directly

Example: Target http://www.baidu.com/login

Command: Curl-h "Content-type:application/json"-X post-d ' {"User": "Tom","password": "Password"} '/ HTTP/ Www.baidu.com/login

The Linux command simulates a GET or POST request for HTTP

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.