Когда я отправляю json
данные в API с помощью curl
- я не получаю никакого вывода. Я бы хотел отправить приглашение по электронной почте получателю.
$url_send ="http://api.address.com/SendInvitation?";
$str_data = json_encode($data);
function sendPostData ($url, $post) {
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($post));
return curl_exec($ch);
}
И вот json
$str_data
[
{
"authorizedKey" : "abbad35c5c01-xxxx-xxx",
"senderEmail" : "[email protected]",
"recipientEmail" : "[email protected]",
"comment" : "Invitation",
"forceDebitCard" : "false"
}
]
И вызывающая функция:
$response = sendPostData($url_send, $str_data);
Это API: https://api.payquicker.com/Help/Api/POST-api-SendInvitation