මේ php එක vb.net වලට ලියන්නේ කොහොමද
date_default_timezone_set('Asia/Colombo');
$now=date("Y-m-d\TH:i:s");
$username="username";
$password="passwoard";
$digest=md5($password);
$body='{
"messages":[
{
"number": "ghgy",
"mask": "abc",
"text": "This test",
"campaignName":"abc12" }
]
}';
$ch=curl_init();
curl_setopt($ch,CURLOPT_URL,"https://....................");
curl_setopt($ch,CURLOPT_POST,1);
curl_setopt($ch,CURLOPT_POSTFIELDS,$body);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
$headers=[
'content-Type:application/json',
'user:'.$username,
'digest:'.$dige5st,
'created:'.$now
];
curl_setopt($ch,CURLOPT_HTTPHEADER,$headers);
$server_output=curl_exec($ch);
curl_close($ch);
var_dump($server_output);