curl -F "url=https://site.com/" -F "certificate=@YOURPUBLIC.pem" "https://api.site.org/set"
В запрос на PHP. Написал, но как сначала отправить url=
https://site.com/, потом файл @YOURPUBLIC.pem ?
$file = 'YOURPUBLIC.pem'
$ch = curl_init();
$post = array(
'file' => '@' . $file,
);
curl_setopt($ch, CURLOPT_URL, "https://api.site.org/set");
curl_setopt($ch, CURLOPT_HTTPHEADER,$split );
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_exec($ch);