PHP ruft JD Alliance Kepler- und Zeus-API-Vorlagen auf

不言
Freigeben: 2023-03-23 09:50:02
Original
4841 Leute haben es durchsucht

Dieser Artikel stellt den Inhalt der PHP-Aufrufe von JD Alliance Kepler und Zeus API-Vorlagen vor. Jetzt können Freunde in Not darauf verweisen.

JD Keplers Appkey und AppSecret sind hier (Sie müssen zuerst eine Anwendung erstellen): http://kepler.jd.com/console/app/app_list.action
Die Autorisierungseinführung finden Sie hier: http://kepler.jd.com/console/docCenterCatalog/ docContent ?channelId=17

/*开普勒类*/
class KeplerApi{
    private $appKey = 'YourKey';    //  你的Key
    private $appScret = 'YourSecret';   //  你的Secret
    private $app_token_json = '{}'; //  第一次需要手动授权获取京东Token然后粘贴到这里
     /**
     * 获取开普勒接口数据
     * @param string $apiUrl    要获取的api
     * @param string $param_json   该api需要的参数
     * @param string $version   版本可选为 2.0
     * @param bool $get 是否使用get,默认为post方式
     * @return mixed    京东返回的json格式的数据
     */
    public function GetKelperApiData($apiUrl='',$param_json = array(),$version='1.0',$get=false){

        $API['access_token'] = $this->refreshAccessToken(); //  生成的access_token,30天一换
        $API['app_key'] = $this->appKey;
        $API['method'] = $apiUrl;
        $API['param_json'] = json_encode($param_json);
        $API['sign_method'] = 'md5';
        $API['timestamp'] = date('Y-m-d H:i:s',time());
        $API['v'] = $version;
        ksort($API);    //  排序
        $str = '';      //  拼接的字符串
        foreach ($API as $k=>$v) $str.=$k.$v;
        $sign = strtoupper(md5($this->appScret.$str.$this->appScret));    //  生成签名    MD5加密转大写
        if ($get){
            //  用get方式拼接URL
            $url = "https://router.jd.com/api?";
            foreach ($API as $k=>$v)
                $url .= urlencode($k) . '=' . urlencode($v) . '&';  //  把参数和值url编码
            $url .= 'sign='.$sign;  //  接上签名
            $res = self::curl_get($url);
        }else{
            //  用post方式获取数据
            $url = "https://router.jd.com/api";
            $API['sign'] = $sign;
            $res = self::curl_post($url,$API);
        }
        return $res;
    }
    //  刷新accessToken
    private function refreshAccessToken(){
        $filePath = dirname(dirname(__FILE__)).'/Config/KelperToken.config';     //  Token文本保存路径
        if (file_exists($filePath)){
            $handle = fopen($filePath,'r');
            $tokenJson = fread($handle,8142);
        }else{
            //  插入默认的token
            fwrite(fopen($filePath,'w'),$this->app_token_json);
            $tokenJson = $this->app_token_json;
        }

        if (substr($tokenJson, 0,3) == pack('CCC',0xef,0xbb,0xbf)) {
            $tokenJson = substr($tokenJson, 3);
        }
        $res = json_decode(trim($tokenJson),true);   //  解析不了可能是文本出了问题,注意BOM头
        //  判断
        if ($res['code'] == 0){
            if ($res['expires_in']*1000 + $res['time']  <  self::getMillisecond() - 86400000){    //  access_token失效前一天
                //  获取刷新token的url
                $refreshUrl = "https://kploauth.jd.com/oauth/token?grant_type=oauth_refresh_token";//&app_key=yourappkey&app_secret=yourappsecret&refresh_token=xxxxxxxx
                $refreshUrl .= &#39;&app_key=&#39;.$this->appKey;
                $refreshUrl .= '&app_secret='.$this->appScret;
                $refreshUrl .= '&refresh_token='.$res['refresh_token'];
                //  获取新的token数据
                $newAccessTokenJson = self::curl_get($refreshUrl);
                //  写入文本
                fwrite(fopen($filePath,'w'),$newAccessTokenJson);
                //  解析成数组
                $newAccessTokenArr = json_decode($newAccessTokenJson,true);
                $accessToken = $newAccessTokenArr['access_token'];
            }else{
                $accessToken = $res['access_token'];
            }
            return $accessToken;
        }else{
            //  如果refresh_token过期,将会返回错误码code:2011;msg:refresh_token过期
            return $res['msg'];
        }
    }
    //  get请求
    private static function curl_get($url){
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
        curl_setopt($ch, CURLOPT_HEADER, FALSE);
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_REFERER, $url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
        $result = curl_exec($ch);
        curl_close($ch);
        return $result;
    }
    //  post请求
    private static function curl_post($url,$curlPost){
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
        curl_setopt($ch, CURLOPT_HEADER, false);
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_REFERER, $url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
        curl_setopt($ch, CURLOPT_POST, 1);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost);
        $result = curl_exec($ch);
        curl_close($ch);
        return $result;
    }
    //  获取13位时间戳
    private static function  getMillisecond(){
        list($t1, $t2) = explode(' ', microtime());
        return sprintf('%.0f',(floatval($t1)+floatval($t2))*1000);
    }
}
Nach dem Login kopieren

Die Zeus-Schnittstelle ist ebenfalls ähnlich, außer dass der Domänenname und die Autorisierungsmethode geändert wurden

/**
 * Class ZeusApi 宙斯接口调用类
 */
class ZeusApi
{
    private $appKey = 'YourKey';    //  你的Key
    private $appScret = 'YourSecret';   //  你的Secret
    private $app_token_json = '{}'; //  第一次需要手动授权获取京东Token然后粘贴到这里

    /**
     * 获取宙斯接口数据
     * @param string $apiUrl    要获取的api
     * @param string $param_json    该api需要的参数,使用json格式,默认为 {}
     * @param string $version   版本可选为 2.0
     * @param bool $get 是否使用get,默认为post方式
     * @return mixed    京东返回的json格式的数据
     */
    public function GetZeusApiData($apiUrl='',$param_json = array(),$version='1.0',$get=false){
        $API['access_token'] = $this->refreshAccessToken(); //  生成的access_token,30天一换
        $API['app_key'] = $this->appKey;
        $API['method'] = $apiUrl;
        $API['360buy_param_json'] = json_encode($param_json);
        $API['timestamp'] = date('Y-m-d H:i:s',time());
        $API['v'] = $version;
        ksort($API);    //  排序
        $str = '';      //  拼接的字符串
        foreach ($API as $k=>$v) $str.=$k.$v;
        $sign = strtoupper(md5($this->appScret.$str.$this->appScret));    //  生成签名    MD5加密转大写
        if ($get){
            //  用get方式拼接URL
            $url = "https://api.jd.com/routerjson?";
            foreach ($API as $k=>$v)
                $url .= urlencode($k) . '=' . $v . '&';  //  把参数和值url编码
            $url .= 'sign='.$sign;
            $res = self::curl_get($url);
        }else{
            //  用post方式获取数据
            $url = "https://api.jd.com/routerjson?";
            $API['sign'] = $sign;
            $res = self::curl_post($url,$API);
        }
        return $res;
    }
    //  刷新accessToken
    private function refreshAccessToken(){
        $filePath = dirname(dirname(__FILE__)).'/Config/ZeusToken.config';     //  Token文本保存路径
        if (file_exists($filePath)){
            $handle = fopen($filePath,'r');
            $tokenJson = fread($handle,8142);
        }else{
            //  插入默认的token
            fwrite(fopen($filePath,'w'),$this->app_token_json);
            $tokenJson = $this->app_token_json;
        }
        
        if (substr($tokenJson, 0,3) == pack('CCC',0xef,0xbb,0xbf)) {
            $tokenJson = substr($tokenJson, 3);
        }
        $res = json_decode(trim($tokenJson),true);   //  解析不了可能是文本出了问题
        //  判断
        if ($res['code'] == 0){
            if ($res['expires_in']*1000 + $res['time']  <  self::getMillisecond() - 86400000){    //  access_token失效前一天
                //  获取刷新token的url
                $refreshUrl = "https://oauth.jd.com/oauth/token?";
                $refreshUrl .= &#39;&client_id=&#39;.$this->appKey;
                $refreshUrl .= '&client_secret='.$this->appScret;
                $refreshUrl .= '&grant_type=refresh_token';
                $refreshUrl .= '&refresh_token='.$res['refresh_token'];
                //  获取新的token数据
                $newAccessTokenJson = self::curl_get($refreshUrl);
                //  写入文本
                fwrite(fopen($filePath,'w'),$newAccessTokenJson);
                //  解析成数组
                $newAccessTokenArr = json_decode($newAccessTokenJson,true);
                $accessToken = $newAccessTokenArr['access_token'];
            }else{
                $accessToken = $res['access_token'];
            }
            return $accessToken;
        }else{
            //  如果refresh_token过期,将会返回错误码code:2011;msg:refresh_token过期
            return $res['msg'];
        }
    }
    //  get请求
    private static function curl_get($url){
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
        curl_setopt($ch, CURLOPT_HEADER, FALSE);
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_REFERER, $url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
        $result = curl_exec($ch);
        curl_close($ch);
        return $result;
    }
    //  post请求
    private static function curl_post($url,$curlPost){
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
        curl_setopt($ch, CURLOPT_HEADER, false);
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_REFERER, $url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
        curl_setopt($ch, CURLOPT_POST, 1);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost);
        $result = curl_exec($ch);
        curl_close($ch);
        return $result;
    }
    //  获取13位时间戳
    private static function  getMillisecond(){
        list($t1, $t2) = explode(' ', microtime());
        return sprintf('%.0f',(floatval($t1)+floatval($t2))*1000);
    }
}
Nach dem Login kopieren

Das obige ist der detaillierte Inhalt vonPHP ruft JD Alliance Kepler- und Zeus-API-Vorlagen auf. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!