"Enter"a basıp içeriğe geçin

Kobikom Push Servis Kullanımı

Kobikom Push Servisi kullanımak isteyenler PHP ile aşagıdaki kod ile kullanabilirler:

<?php
$gelen_veri = file_get_contents("php://input");
$data = json_decode($gelen_veri);
echo $data->dtmf;
echo '<hr>';
echo $data->type;
echo '<hr>';
echo $data->called;
echo '<hr>';
echo $data->caller;
echo '<hr>';
echo $data->uniqueid;
?>