<!--?php
// +----------------------------------------------------------------------
// | JuhePHP [ NO ZUO NO DIE ]
// +----------------------------------------------------------------------
// | Copyright (c) 2010-2015 http://juhe.cn All rights reserved.
// +----------------------------------------------------------------------
// | Author: Juhedata <info@juhe.cn-->
// +----------------------------------------------------------------------
//----------------------------------
// APK加密调用示例代码 - 聚合数据
// 在线接口文档:http://www.juhe.cn/docs/76
//----------------------------------
header('Content-type:text/html;charset=utf-8');
//配置您申请的appkey
$appkey = "*********************";
//************1.①根据url上传待加密的apk************
$url = "http://op.juhe.cn/ijiami/upload";
"apkurl" => "",//需要进行加密的APK下载URL地址
"key" => $appkey,//应用APPKEY(应用详细页查询)
"dtype" => "",//返回数据的格式,xml或json,默认json
);
$content = juhecurl($url,$paramstring);
if($result){
if($result['error_code']=='0'){
}else{
echo $result['error_code'].":".$result['reason'];
}
}else{
echo "请求失败";
}
//**************************************************
//************2.②提交加密应用加密************
$url = "http://op.juhe.cn/ijiami/encrypt";
"appid" => "",//步骤①返回的appid
"key" => $appkey,//应用APPKEY(应用详细页查询)
"dtype" => "",//返回数据的格式,xml或json,默认json
);
$content = juhecurl($url,$paramstring);
if($result){
if($result['error_code']=='0'){
}else{
echo $result['error_code'].":".$result['reason'];
}
}else{
echo "请求失败";
}
//**************************************************
//************3.③查询加密结果************
$url = "http://op.juhe.cn/ijiami/result";
"appid" => "",//步骤②返回的appid
"key" => $appkey,//应用APPKEY(应用详细页查询)
"dtype" => "",//返回数据的格式,xml或json,默认json
);
$content = juhecurl($url,$paramstring);
if($result){
if($result['error_code']=='0'){
}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){
curl_setopt( $ch, CURLOPT_HTTP_VERSION
, CURL_HTTP_VERSION_1_1
);
if( $ispost )
{
}
else
{
if($params){
}else{
}
}
if ($response === FALSE) {
//echo "cURL Error: " . curl_error($ch);
return false;
}
return $response;
}