DEMO: ShortURL - 短網(wǎng)址
代碼示例
<?php
/*****************
* 非加密請(qǐng)求 示例代碼
******************/
//---------------------------------get 獲取短網(wǎng)址數(shù)據(jù)-------------------------------------
//appid參數(shù) appkey參數(shù)在 短網(wǎng)址-創(chuàng)建/管理AppID中獲取
//短網(wǎng)址 短網(wǎng)址-創(chuàng)建/管理短網(wǎng)址模板中獲得
$appid = '6***3'; //appid參數(shù)
$appkey = '5d****************************58'; //appkey參數(shù)
$short_url = 'https://******.cn/******'; //短網(wǎng)址
$post_data = array(
'appid' => $appid,
'signature' => $appkey,
'short_url' => $short_url
);
$ch = curl_init();
curl_setopt_array($ch , array(
CURLOPT_URL => "https://service.mysubmail.com/shorturl?".http_build_query($post_data) ,
CURLOPT_RETURNTRANSFER => 1 ,
CURLOPT_POST => 0 ,
));
$output = curl_exec($ch);
curl_close($ch);
$output = json_decode($output,true);
print_r($output);
//---------------------------------post 創(chuàng)建短網(wǎng)址數(shù)據(jù)-------------------------------------
//appid參數(shù) appkey參數(shù)在 短網(wǎng)址-創(chuàng)建/管理AppID中獲取
//目標(biāo)網(wǎng)址
$appid = '6***3'; //appid參數(shù)
$appkey = '5d****************************58'; //appkey參數(shù)
$url = 'https://www.*********.com'; //目標(biāo)網(wǎng)址
$post_data = array(
'appid' => $appid ,
'signature' => $appkey ,
'url' => $url ,
);
$ch = curl_init();
curl_setopt_array($ch , array(
CURLOPT_URL => 'https://service.mysubmail.com/shorturl' ,
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_POST => 1 ,
CURLOPT_POSTFIELDS => $post_data
));
$output = curl_exec($ch);
curl_close($ch);
$output = json_decode($output,true);
print_r($output);
//---------------------------------put 更新短網(wǎng)址數(shù)據(jù)-------------------------------------
//appid參數(shù) appkey參數(shù)在 短網(wǎng)址-創(chuàng)建/管理AppID中獲取
//短網(wǎng)址 短網(wǎng)址-創(chuàng)建/管理短網(wǎng)址模板中獲得
//目標(biāo)網(wǎng)址
$appid = '6***3'; //appid參數(shù)
$appkey = '5d****************************58'; //appkey參數(shù)
$short_url = 'https://******.cn/******'; //短網(wǎng)址
$url = 'https://www.*********.com'; //目標(biāo)網(wǎng)址
$post_data = array(
'appid' => $appid,
'signature' => $appkey,
'short_url' => $short_url,
'url' => $url,
);
$ch = curl_init();
curl_setopt_array($ch , array(
CURLOPT_URL => 'https://service.mysubmail.com/shorturl' ,
CURLOPT_RETURNTRANSFER => 1 ,
CURLOPT_CUSTOMREQUEST => 'PUT',
CURLOPT_POSTFIELDS => http_build_query($post_data) ,
CURLOPT_HTTPHEADER => array("Content-Type: application/x-www-form-urlencoded")
));
$output = curl_exec($ch);
curl_close($ch);
$output = json_decode($output,true);
print_r($output);
//---------------------------------delete 刪除短網(wǎng)址數(shù)據(jù)-------------------------------------
//appid參數(shù) appkey參數(shù)在 短網(wǎng)址-創(chuàng)建/管理AppID中獲取
//短網(wǎng)址 短網(wǎng)址-創(chuàng)建/管理短網(wǎng)址模板中獲得
$appid = '6***3'; //appid參數(shù)
$appkey = '5d****************************58'; //appkey參數(shù)
$short_url = 'https://******.cn/******'; //短網(wǎng)址
$post_data = array(
'appid' => $appid,
'signature' => $appkey,
'short_url' => $short_url,
);
$ch = curl_init();
curl_setopt_array($ch , array(
CURLOPT_URL => 'https://service.mysubmail.com/shorturl',
CURLOPT_RETURNTRANSFER => 1 ,
CURLOPT_CUSTOMREQUEST => 'DELETE' ,
CURLOPT_POSTFIELDS => http_build_query($post_data) ,
CURLOPT_HTTPHEADER => array("Content-Type: application/x-www-form-urlencoded")
));
$output = curl_exec($ch);
curl_close($ch);
$output = json_decode($output,true);
print_r($output);
/*****************
* 加密請(qǐng)求 示例代碼
******************/
//---------------------------------get 獲取短網(wǎng)址數(shù)據(jù)-------------------------------------
//appid參數(shù) appkey參數(shù)在 短網(wǎng)址-創(chuàng)建/管理AppID中獲取
//短網(wǎng)址 短網(wǎng)址-創(chuàng)建/管理短網(wǎng)址模板中獲得
$appid = '6***3'; //appid參數(shù)
$appkey = '5d****************************58'; //appkey參數(shù)
$short_url = 'https://******.cn/******'; //短網(wǎng)址
//通過接口獲取時(shí)間戳
$ch = curl_init();
curl_setopt_array($ch, array(
CURLOPT_URL => 'https://api.mysubmail.com/service/timestamp.json',
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_POST => 0,
));
$output = curl_exec($ch);
curl_close($ch);
$output = json_decode($output, true);
$timestamp = $output['timestamp'];
$post_data = array(
"appid" => $appid ,
"short_url" => $short_url ,
"timestamp" => $timestamp,
"sign_type" => 'md5',
);
//整理生成簽名所需參數(shù)
$temp = $post_data;
unset($temp['short_url']);
ksort($temp);
reset($temp);
$tempStr = "";
foreach ($temp as $key => $value) {
$tempStr .= $key . "=" . $value . "&";
}
$tempStr = substr($tempStr, 0, -1);
//生成簽名
$post_data['signature'] = md5($appid . $appkey . $tempStr . $appid . $appkey);
$ch = curl_init();
curl_setopt_array($ch , array(
CURLOPT_URL => "https://service.mysubmail.com/shorturl?".http_build_query($post_data) ,
CURLOPT_RETURNTRANSFER => 1 ,
CURLOPT_POST => 0 ,
));
$output = curl_exec($ch);
curl_close($ch);
$output = json_decode($output,true);
print_r($output);
//---------------------------------post 創(chuàng)建短網(wǎng)址數(shù)據(jù)-------------------------------------
//appid參數(shù) appkey參數(shù)在 短網(wǎng)址-創(chuàng)建/管理AppID中獲取
//目標(biāo)網(wǎng)址
$appid = '6***3'; //appid參數(shù)
$appkey = '5d****************************58'; //appkey參數(shù)
$url = 'https://www.*********.com'; //目標(biāo)網(wǎng)址
//通過接口獲取時(shí)間戳
$ch = curl_init();
curl_setopt_array($ch, array(
CURLOPT_URL => 'https://api.mysubmail.com/service/timestamp.json',
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_POST => 0,
));
$output = curl_exec($ch);
curl_close($ch);
$output = json_decode($output, true);
$timestamp = $output['timestamp'];
$post_data = array(
"appid" => $appid ,
"url" => $url ,
"timestamp" => $timestamp,
"sign_type" => 'md5',
);
//整理生成簽名所需參數(shù)
$temp = $post_data;
unset($temp['url']);
ksort($temp);
reset($temp);
$tempStr = "";
foreach ($temp as $key => $value) {
$tempStr .= $key . "=" . $value . "&";
}
$tempStr = substr($tempStr, 0, -1);
//生成簽名
$post_data['signature'] = md5($appid . $appkey . $tempStr . $appid . $appkey);
$ch = curl_init();
curl_setopt_array($ch , array(
CURLOPT_URL => 'https://service.mysubmail.com/shorturl' ,
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_POST => 1 ,
CURLOPT_POSTFIELDS => $post_data
));
$output = curl_exec($ch);
curl_close($ch);
$output = json_decode($output,true);
print_r($output);
//---------------------------------put 更新短網(wǎng)址數(shù)據(jù)-------------------------------------
//appid參數(shù) appkey參數(shù)在 短網(wǎng)址-創(chuàng)建/管理AppID中獲取
//短網(wǎng)址 短網(wǎng)址-創(chuàng)建/管理短網(wǎng)址模板中獲得
//目標(biāo)網(wǎng)址
$appid = '6***3'; //appid參數(shù)
$appkey = '5d****************************58'; //appkey參數(shù)
$short_url = 'https://******.cn/******'; //短網(wǎng)址
$url = 'https://www.*********.com'; //目標(biāo)網(wǎng)址
//通過接口獲取時(shí)間戳
$ch = curl_init();
curl_setopt_array($ch, array(
CURLOPT_URL => 'https://api.mysubmail.com/service/timestamp.json',
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_POST => 0,
));
$output = curl_exec($ch);
curl_close($ch);
$output = json_decode($output, true);
$timestamp = $output['timestamp'];
$post_data = array(
"appid" => $appid ,
"short_url" => $short_url ,
'url' => $url ,
"timestamp" => $timestamp,
"sign_type" => 'md5',
);
//整理生成簽名所需參數(shù)
$temp = $post_data;
unset($temp['url']);
unset($temp['short_url']);
ksort($temp);
reset($temp);
$tempStr = "";
foreach ($temp as $key => $value) {
$tempStr .= $key . "=" . $value . "&";
}
$tempStr = substr($tempStr, 0, -1);
//生成簽名
$post_data['signature'] = md5($appid . $appkey . $tempStr . $appid . $appkey);
$ch = curl_init();
curl_setopt_array($ch , array(
CURLOPT_URL => 'https://service.mysubmail.com/shorturl' ,
CURLOPT_RETURNTRANSFER => 1 ,
CURLOPT_CUSTOMREQUEST => 'PUT',
CURLOPT_POSTFIELDS => http_build_query($post_data) ,
CURLOPT_HTTPHEADER => array("Content-Type: application/x-www-form-urlencoded")
));
$output = curl_exec($ch);
curl_close($ch);
$output = json_decode($output,true);
print_r($output);
//---------------------------------delete 刪除短網(wǎng)址數(shù)據(jù)-------------------------------------
//appid參數(shù) appkey參數(shù)在 短網(wǎng)址-創(chuàng)建/管理AppID中獲取
//短網(wǎng)址 短網(wǎng)址-創(chuàng)建/管理短網(wǎng)址模板中獲得
$appid = '6***3'; //appid參數(shù)
$appkey = '5d****************************58'; //appkey參數(shù)
$short_url = 'https://******.cn/******'; //短網(wǎng)址
//通過接口獲取時(shí)間戳
$ch = curl_init();
curl_setopt_array($ch, array(
CURLOPT_URL => 'https://api.mysubmail.com/service/timestamp.json',
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_POST => 0,
));
$output = curl_exec($ch);
curl_close($ch);
$output = json_decode($output, true);
$timestamp = $output['timestamp'];
$post_data = array(
"appid" => $appid ,
"short_url" => $short_url ,
"timestamp" => $timestamp,
"sign_type" => 'md5',
);
//整理生成簽名所需參數(shù)
$temp = $post_data;
unset($temp['short_url']);
ksort($temp);
reset($temp);
$tempStr = "";
foreach ($temp as $key => $value) {
$tempStr .= $key . "=" . $value . "&";
}
$tempStr = substr($tempStr, 0, -1);
//生成簽名
$post_data['signature'] = md5($appid . $appkey . $tempStr . $appid . $appkey);
$ch = curl_init();
curl_setopt_array($ch , array(
CURLOPT_URL => 'https://service.mysubmail.com/shorturl',
CURLOPT_RETURNTRANSFER => 1 ,
CURLOPT_CUSTOMREQUEST => 'DELETE' ,
CURLOPT_POSTFIELDS => http_build_query($post_data) ,
CURLOPT_HTTPHEADER => array("Content-Type: application/x-www-form-urlencoded")
));
$output = curl_exec($ch);
curl_close($ch);
$output = json_decode($output,true);
print_r($output);