コードの説明: PHP ベースの Apple シリアル番号クエリ インターフェイス呼び出しコード例 関連データ: Apple シリアル番号 インターフェイス アドレス: http://www.juhe.cn/docs/api/id/37
- // +--------------- - ------------------------------------------------- - -------
-
- //-------------------------------------
- // Apple シリアル番号呼び出しサンプル コード - 集約データ
- // オンライン インターフェイス ドキュメント: http://www.juhe.cn/docs/37
- //-------- - --------------
-
- header('Content-type:text/html;charset=utf-8');
-
-
- //申請した appkey を設定します
- $appkey = "************************";
-
-
-
-
- //************1. Apple シリアル番号/IMEI 番号のクエリ************
- $url = "http://apis.juhe.cn/appleinfo/index" ;
- $params = array(
- "sn" => "",//Apple 製品のシリアル番号または IMEI 番号
- "dtype" => "",//返されるデータ形式: json または xml、デフォルトの json
- "key " => $appkey,//申請したキー
- );
- $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;
- }
コードをコピー
|