post curl code example

Example 1: curl post request

curl -d "user=user1&pass=abcd" -X POST https://example.com/login

Example 2: curl post

curl --data '' https://example.com/resource.cgi

curl -X POST https://example.com/resource.cgi

curl --request POST https://example.com/resource.cgi

Example 3: curl https post

curl -d "" https://example.com

curl -H "Content-Type: application/json" --data "@C:\Users\xxx\Desktop\body.json" https://example.com/api/service

Example 4: curl post

curl --data "param1=value1&param2=value2" https://example.com/post

Example 5: curl pass data in request

curl -d "param1=value1¶m2=value2" -X POST http://localhost:3000/data

Example 6: curl post request

$data = [
				'api_key' => '123456789',
				'name' => 'Emmanuel',
				'email'   => '[email protected]'
				];
			$url = 'https://mysite.com/api/subscribe';
			$ch = curl_init();
			curl_setopt($ch, CURLOPT_URL, $url);
			curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
			curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
			$response = curl_exec($ch);
			var_export($response);