Q:

curl post

curl -d "user=user1&pass=abcd" -X POST https://example.com/login
8
curl -d '{"key1":"value1", "key2":"value2"}' -H "Content-Type: application/json" -X POST http://localhost:3000/data
2
curl --data '' https://example.com/resource.cgi

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

curl --request POST https://example.com/resource.cgi
0
curl --data "param1=value1&param2=value2" https://example.com/post
0
			$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);
-1

New to Communities?

Join the community