PHP實現百度、新浪的API接口調用生成短連接網址

在實際過程當中咱們會有這樣的場景,就是發送短信的時候,裏面須要嵌入咱們的網址,但是網址都是很長的。php

若是你通常都是在手機上操做的話,能夠在微信小程序中搜索:短連接的生成html

或者在文章底部掃描小程序二維碼進行使用laravel

可是短信內容,最多隻能七十個字左右,多餘就會出現發送兩條的狀況,然而這並非咱們想要的。

因此,基於這種需求咱們急需將長連接轉爲短連接。經常使用的能夠看到新浪微博的分享地址。下面來看,如何實現?複製代碼

新浪提供了長連接轉爲短連接的API,能夠把長連接轉爲 t.cn/xxx 這種格式的短連接。git

(t.cn新浪已中止服務,暫時用不了,如想使用請聯繫新浪官方)github

百度提供了長連接轉爲短連接的API,能夠把長連接轉爲 dwz.cn/xxx 這種格式的短連接。數據庫

百度老接口將於 近期 中止服務,請使用新接口json

百度老接口:https://dwz.cn/admin/create(短網址生成接口)
百度新接口:https://dwz.cn/admin/v2/create(短網址生成接口)複製代碼

百度API:(未被收錄的連接則須要收錄後才能生成)

<?php
    $host = 'https://dwz.cn';
    $path = '/admin/v2/create';
    $url = $host . $path;
    $method = 'POST';
    $content_type = 'application/json';
    
    // TODO: 設置Token
    $token = '你的Token';
    
    // TODO:設置待註冊長網址
    $bodys = array('url'=>'你的長網址'); 
    
    // 配置headers 
    $headers = array('Content-Type:'.$content_type, 'Token:'.$token);
    
    // 建立鏈接
    $curl = curl_init($url);
    curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
    curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
    curl_setopt($curl, CURLOPT_FAILONERROR, false);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($curl, CURLOPT_HEADER, false);
    curl_setopt($curl, CURLOPT_POST, true);
    curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($bodys));
    
    // 發送請求
    $response = curl_exec($curl);
    curl_close($curl);
    
    // 讀取響應
    var_dump($response);
    ?>複製代碼

響應結果示例

{
    "Code": 0,
    "ShortUrl": "https://dwz.cn/de3rp2Fl",
    "LongUrl": "http://www.baidu.com",
    "ErrMsg": ""
}複製代碼

響應參數說明

字段 類型 說明
Code int 0:正常返回短網址
int -1:短網址生成失敗
int -2:長網址不合法
int -3:長網址存在安全隱患
int -4:長網址插入數據庫失敗
int -5:長網址在黑名單中,不容許註冊
ShortUrl string 短網址
LongUrl string 長網址(原網址)
ErrMsg string 錯誤信息

新浪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個。api

多個url參數須要使用以下方式請求:url_long=aaa&url_long=bbb

建立source方法

1.進入open.weibo.com/ ,選擇菜單 微鏈接->網站接入。

2.點擊當即接入,建立新應用,隨便填寫應用名稱,點擊建立。

3.建立成功後,AppKey就是source參數的值,能夠用於請求建立短連接。

<?php

namespace App\Services;


class ShortUrlService
{
    /**
     * 調用新浪接口將長連接轉爲短連接
     * @param  string        $source    申請應用的AppKey
     * @param  array|string  $urlLong  長連接,支持多個轉換(須要先執行urlencode)
     * @return array
     */
    public static function getSinaShortUrl($source, $urlLong)
    {
        // 參數檢查
        if(empty($source) || !$urlLong){
            return false;
        }
        // 參數處理,字符串轉爲數組
        if(!is_array($urlLong)){
            $urlLong = array($urlLong);
        }
        // 拼接url_long參數請求格式
        $url_param = array_map(function($value){
            return '&url_long='.urlencode($value);
        }, $urlLong);
        $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);
        $result = array();
        // 執行請求
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_URL, $request_url);
        $data = curl_exec($ch);
        if($error=curl_errno($ch)){
            return false;
        }
        curl_close($ch);
        $result = json_decode($data, true);
        return $result;
    }


}
複製代碼

AppKey 如下是公用API,暫時可用。如失效,註冊新浪開發者賬號便可

$source = config('app.sina');複製代碼

單個連接轉換

$urlLong = config('app.url');

$shortUrl = ShortUrlService::getSinaShortUrl($source, $urlLong);複製代碼

返回結果

array:1 [
  0 => array:3 [
    "url_short" => "http://t.cn/*******"
    "url_long" => "http://***********.com/#/***********"
    "type" => 0
  ]
]複製代碼

多個連接轉換

$urlLong = [
            'http://www.***.com/article/1.html',
            'http://www.***.com/article/2.html',
            'http://www.***.com/index.html'
        ];

$shortUrl = ShortUrlService::getSinaShortUrl($source, $urlLong);複製代碼

返回結果

array:3 [
  0 => array:3 [
    "url_short" => "http://t.cn/RD12"
    "url_long" => "http://www.***.com/article/1.html"
    "type" => 0
  ]
  1 => array:3 [
    "url_short" => "http://t.cn/RD134KV"
    "url_long" => "http://www.***.com/article/2.html"
    "type" => 0
  ]
  2 => array:3 [
    "url_short" => "http://t.cn/RA8u231F"
    "url_long" => "http://www.***.com/index.html"
    "type" => 0
  ]
]複製代碼

經過上面的方法,能夠很輕鬆的實現用php生成短連接網址的功能。

項目源碼中含有短鏈接生成的api接口:github.com/WXiangQian/…

附加小程序二維碼:

​​​​

相關文章
相關標籤/搜索