91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP如何通過調用新浪API生成t.cn格式短網址鏈接

發布時間:2021-06-09 11:43:28 來源:億速云 閱讀:201 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關PHP如何通過調用新浪API生成t.cn格式短網址鏈接,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

新浪提供了長鏈接轉為短鏈接的API,可以把長鏈接轉為 t.cn/xxx 這種格式的短鏈接。

API:

http://api.t.sina.com.cn/short_url/shorten.json (返回結果是JSON格式)
http://api.t.sina.com.cn/short_url/shorten.xml (返回結果是XML格式)

請求參數:

source 申請應用時分配的AppKey,調用接口時代表應用的唯一身份。
url_long 需要轉換的長鏈接,需要URLencoded,最多不超過20個。
多個url參數需要使用如下方式請求:url_long=aaa&url_long=bbb

創建source方法

1.進入http://open.weibo.com/ ,選擇菜單 微連接->網站接入。
2.點擊立即接入,創建新應用,隨便填寫應用名稱,點擊創建。
3.創建成功后,AppKey就是source參數的值,可以用于請求創建短鏈接。

測試代碼:

<?php
$api = 'http://api.t.sina.com.cn/short_url/shorten.json'; // json
// $api = 'http://api.t.sina.com.cn/short_url/shorten.xml'; // xml
$source = '您申請的AppKey';
$url_long = 'https://www.jb51.net/';
$request_url = sprintf($api.'?source=%s&url_long=%s', $source, $url_long);
$data = file_get_contents($request_url);
echo $data;
?>

返回JSON格式

[
  {
    "url_short": "http:\/\/t.cn\/Rki0twp",
    "url_long": "http:\/\/www.cnblogs.com\/daxiangxm",
    "type": 0
  }
]

返回XML格式

<?xml version="1.0" encoding="UTF-8"?><urls>
  <url>
    <url_short>http://t.cn/RBclsRo</url_short>
    <url_long>https://www.jb51.net/</url_long>
    <type>0</type>
  </url></urls>

生成的短鏈接為 http://t.cn/RBclsRo ,訪問會跳轉到 https://www.jb51.net/

完整調用方法如下:

<?php/**
 * 調用新浪接口將長鏈接轉為短鏈接
 * @param string    $source  申請應用的AppKey
 * @param array|string $url_long 長鏈接,支持多個轉換(需要先執行urlencode)
 * @return array
 */function getSinaShortUrl($source, $url_long){
  // 參數檢查
  if(empty($source) || !$url_long){<br>    return false;
  }  // 參數處理,字符串轉為數組
  if(!is_array($url_long)){<br>    $url_long = array($url_long);
  }  // 拼接url_long參數請求格式
  $url_param = array_map(function($value){
    return '&url_long='.urlencode($value);
  }, $url_long);<br>  $url_param = implode('', $url_param);
  // 新浪生成短鏈接接口
  $api = 'http://api.t.sina.com.cn/short_url/shorten.json';  // 請求url
  $request_url = sprintf($api.'?source=%s%s', $source, $url_param);  <br>  $result = array();  // 執行請求
  $ch = curl_init();
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  curl_setopt($ch, CURLOPT_URL, $request_url);  <br>  $data = curl_exec($ch);<br>  if($error=curl_errno($ch)){<br>  return false;
  }
  curl_close($ch);  $result = json_decode($data, true);  return $result;
}
//AppKey <br>$source = '您申請的AppKey';<br>// 單個鏈接轉換
$url_long = 'https://www.jb51.net/';<br>$data = getSinaShortUrl($source, $url_long);
print_r($data);<br>// 多個鏈接轉換
$url_long = array('https://www.jb51.net/','https://www.jb51.net/','https://www.jb51.net/');
$data = getSinaShortUrl($source, $url_long);
print_r($data);
?>

輸出:

Array(
    [0] => Array
        (
            [url_short] => http://t.cn/RBclsRo
            [url_long] => https://www.jb51.net/
            [type] => 0
        )
)Array(
    [0] => Array
        (
            [url_short] => http://t.cn/RBclsRo
            [url_long] => https://www.jb51.net/
            [type] => 0
        )
    [1] => Array
        (
            [url_short] => http://t.cn/RBclsRo
            [url_long] => https://www.jb51.net/
            [type] => 0
        )
    [2] => Array
        (
            [url_short] => http://t.cn/RBclsRo
            [url_long] => https://www.jb51.net/
            [type] => 0
        )
)

關于“PHP如何通過調用新浪API生成t.cn格式短網址鏈接”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

庆元县| 钟祥市| 鄱阳县| 台北县| 安阳县| 固始县| 杭州市| 天水市| 卓资县| 长泰县| 连城县| 阿克苏市| 利辛县| 信宜市| 桐梓县| 尉犁县| 广水市| 孝感市| 伊通| 呼图壁县| 望都县| 夏河县| 布拖县| 调兵山市| 凉城县| 丰城市| 枝江市| 汪清县| 沽源县| 张北县| 湘潭县| 磴口县| 淅川县| 启东市| 贞丰县| 桂林市| 七台河市| 筠连县| 海林市| 永春县| 深泽县|