// 接口類型:互億無線OCR識別接口
// 賬戶注冊:https://user.ihuyi.com/register.html
// 注意事項:
// DEMO僅作參考
header("Content-type:text/html; charset=UTF-8");
function Post($curlPost,$url){
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_NOBODY, true);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $curlPost);
$return_str = curl_exec($curl);
curl_close($curl);
return $return_str;
}
$account = "APPID";
$password = "APPKEY";
$img_base64 = "";
$img_url = "http://www.xx.com/xx.png";
$time = time();
$password = md5($account.$password.$img_base64.$img_url.$time);
$target = "https://api.ihuyi.com/orc/idcard/Submit.json";
$post_data = "account=".$account."&password=".$password."&img_base64=".$img_base64."&img_url=".$img_url."&time=".$time;
//密碼可以使用明文密碼或使用32位MD5加密
$res = Post($post_data, $target);
$res_json = json_decode($res,true);
print_r($res_json);
if($res_json["code"]==2){
echo "提交成功";
}
if($res_json["result"]["status"]==2){
echo "認(rèn)證通過";
}
驗證碼已發(fā)送到您的手機(jī),請查收!
輸入驗證碼后,點擊“開通體驗賬戶”按鈕可立即開通體驗賬戶。