curl with post code example
Example 1: curl post json
curl -X POST -H "Content-Type: application/json" \
-d '{"username":"abc","password":"abc"}' \
https:
Example 2: curl post request
curl -d "user=user1&pass=abcd" -X POST https:
Example 3: 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);