互億無線 · 文檔中心

IP地址查詢 - 代碼示例


php對接IP地址查詢接口DEMO示例
本文為您提供了php語言版本的IP地址查詢對接DEMO示例

IP地址查詢接口文檔 點(diǎn)擊下載

IP地址查詢接入指南 點(diǎn)擊訪問


// 接口類型:互億無線IP地址查詢接口
// 賬戶注冊:https://user.ihuyi.com/register.html
// 注意事項(xiàng):
// 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";
$ip = "192.168.1.1";
$time = time();
$password = md5($account.$password.$time);

$target = "https://api.ihuyi.com/appdev/ip/Submit.json";
$post_data = "account=".$account."&password=".$password."&ip=".$ip."&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)證通過";
}


現(xiàn)在注冊,即享新用戶禮包!

在線咨詢
電話咨詢

服務(wù)熱線:

4008 808 898

服務(wù)熱線(工作時間):

4008 808 898

業(yè)務(wù)咨詢(非工作時間):

售后咨詢(非工作時間):

驗(yàn)證碼已發(fā)送到您的手機(jī),請查收!

輸入驗(yàn)證碼后,點(diǎn)擊“開通體驗(yàn)賬戶”按鈕可立即開通體驗(yàn)賬戶。

收不到短信驗(yàn)證碼?
互億無線不提供接碼服務(wù),接碼用戶請勿點(diǎn)擊開通按鈕。
×