申请APPKEY地址:https://www.juhe.cn/docs/api/id/179
PHP示例:
<?php
// +----------------------------------------------------------------------
// | JuhePHP [ NO ZUO NO DIE ]
// +----------------------------------------------------------------------
// | Copyright (c) 2010-2015 http://juhe.cn All rights reserved.
// +----------------------------------------------------------------------
// | Author: Juhedata <info@juhe.cn>
// +----------------------------------------------------------------------
//----------------------------------
// 免费出行保险调用示例代码 - 聚合数据
// 在线接口文档:http://www.juhe.cn/docs/179
//----------------------------------
header('Content-type:text/html;charset=utf-8');
//配置您申请的appkey
$appkey = "*********************";
//************1.提交信息,获取验证码************
$url = "http://japi.juhe.cn/carInsuranceGift/check";
$params = array(
"key" => $appkey,//您申请的appKey
"mobile" => "",//申请人的手机号,用来接收验证码和保险单号
"company" => "",//应用名,公司名或者网站名称 短信模板:【company】您的验证码是#code#.如非本人操作,请忽略本短信
"realname" => "",//姓名
"gender" => "",//性别 M:男,F:女
"birth" => "",//生日 格式如: 1988-01-01
"product" => "",//保险产品代码,JSWY:驾驶员意外险,WYCX:公共交通意外险,SEWYCX:少儿公共交通意外险
"idcard" => "",//身份证号
"city" => "",//城市名,如: 上海
"carmodel" => "",//车型
);
$paramstring = http_build_query($params);
$content = juhecurl($url,$paramstring);
$result = json_decode($content,true);
if($result){
if($result['error_code']=='0'){
print_r($result);
}else{
echo $result['error_code'].":".$result['reason'];
}
}else{
echo "请求失败";
}
//**************************************************
//************2.获取车辆赠险************
$url = "http://japi.juhe.cn/carInsuranceGift/gift";
$params = array(
"key" => $appkey,//您申请的appKey
"mobile" => "",//手机号 申请成功后将作为接收保险单号的手机号码
"verification" => "",//验证码
);
$paramstring = http_build_query($params);
$content = juhecurl($url,$paramstring);
$result = json_decode($content,true);
if($result){
if($result['error_code']=='0'){
print_r($result);
}else{
echo $result['error_code'].":".$result['reason'];
}
}else{
echo "请求失败";
}
//**************************************************
/**
* 请求接口返回内容
* @param string $url [请求的URL地址]
* @param string $params [请求的参数]
* @param int $ipost [是否采用POST形式]
* @return string
*/
function juhecurl($url,$params=false,$ispost=0){
$httpInfo = array();
$ch = curl_init();
curl_setopt( $ch, CURLOPT_HTTP_VERSION , CURL_HTTP_VERSION_1_1 );
curl_setopt( $ch, CURLOPT_USERAGENT , 'JuheData' );
curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT , 60 );
curl_setopt( $ch, CURLOPT_TIMEOUT , 60);
curl_setopt( $ch, CURLOPT_RETURNTRANSFER , true );
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
if( $ispost )
{
curl_setopt( $ch , CURLOPT_POST , true );
curl_setopt( $ch , CURLOPT_POSTFIELDS , $params );
curl_setopt( $ch , CURLOPT_URL , $url );
}
else
{
if($params){
curl_setopt( $ch , CURLOPT_URL , $url.'?'.$params );
}else{
curl_setopt( $ch , CURLOPT_URL , $url);
}
}
$response = curl_exec( $ch );
if ($response === FALSE) {
//echo "cURL Error: " . curl_error($ch);
return false;
}
$httpCode = curl_getinfo( $ch , CURLINFO_HTTP_CODE );
$httpInfo = array_merge( $httpInfo , curl_getinfo( $ch ) );
curl_close( $ch );
return $response;
}