$client_id, 'grant_type' => 'client_credentials' )); $data = curl_exec($ch); $json = $data; $obj = json_decode($json); $token=$obj->{'access_token'}; $opts = array( 'http'=>array( 'method'=>"GET", 'header'=>"content-type: application/x-www-form-urlencoded\r\n" . "origin: http://localhost:20000\r\n" . "authorization: bearer ".$token."\r\n" ) ); $context = stream_context_create($opts); // Open the file using the HTTP headers set above $file = file_get_contents('https://wstraining.bkn.go.id/bkn-resources-server/api/pns/data-utama/'.$nip, false, $context); $obj = json_decode($file); if ($obj->{'code'}==1){ $obj_detil= $obj->{'data'}; $obj = json_decode($obj_detil); print $obj->{'nipBaru'}.";".$obj->{'gelarDepan'}." ".$obj->{'nama'}.", ".$obj->{'gelarBelakang'}.";".$obj->{'tempatLahir'}.", ".$obj->{'tglLahir'}.";".$obj->{'unorNama'}.";".$obj->{'statusPegawai'}.";".$obj->{'jenisPegawaiNama'}.";".$obj->{'kedudukanPnsNama'}; }else{ print "Data Tidak Ditemukan;"; } ?>