function dogrula($bilgiler){
$gonder = '
'.$bilgiler["KimlikNo"].'
'.$bilgiler["Ad"].'
'.$bilgiler["Soyad"].'
'.$bilgiler["DogumGun"].'
'.$bilgiler["DogumAy"].'
'.$bilgiler["DogumYil"].'
';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://tckimlik.nvi.gov.tr/Service/KPSPublicYabanciDogrula.asmx" );
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true );
curl_setopt($ch, CURLOPT_POST, true );
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_POSTFIELDS, $gonder);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'POST /Service/KPSPublicYabanciDogrula.asmx HTTP/1.1',
'Host: tckimlik.nvi.gov.tr',
'Content-Type: text/xml; charset=utf-8',
'Content-Length: '.strlen($gonder)
));
$gelen = curl_exec($ch);
curl_close($ch);
$gelensonuc=strip_tags($gelen);
if ($gelensonuc =="1" or $gelensonuc ==true)
{
$sonuc="true";
}
else
{
$sonuc="false";
}
return $sonuc;
}
$bilgiler = array(
"KimlikNo" => "99XXXXXXXX",
"Ad" => "XXXXXX",
"Soyad" => "XXXXXXX",
"DogumGun" => "1",
"DogumAy" => "2",
"DogumYil" => "1975"
);
$gelensonuc = dogrula($bilgiler);
echo $gelensonuc;
arkadaşlar yukarıda gibi bir kod çalıştırıyorum fakat ne yaptıysam yapayım sürekli false dönüyor.
https://tckimlik.nvi.gov.tr/Service/KPSPublicYabanciDogrula.asmx?op=YabanciKimlikNoDogrula
bu devletin verdiği api. ne yaptıysam çalıştıramadım. Github'da bir tane daha yayınlamış bir arkadaş, fakat o da çalışmıyordu. sizce nerede hata yapıyorum?