>php教程 >php手册 >获取新浪微博的Tiny网址链接

获取新浪微博的Tiny网址链接

WBOY
WBOY원래의
2016-06-07 11:41:211578검색

///////////////////////////////////////////////////////////////////////获取新浪微博的T网址链接
//http://open.weibo.com/wiki/2/short_url/shorten
//http://open.weibo.com/wiki/Help/error
//http://open.weibo.com/wiki/2/account/rate_limit_status 新版
    ///////////////////////////////////////////////////////////////////////获取新浪微博的T网址链接<br>     //http://open.weibo.com/wiki/2/short_url/shorten<br>     //http://open.weibo.com/wiki/Help/error<br>     //http://open.weibo.com/wiki/2/account/rate_limit_status 新版<br>     function GetTurl($url=''){<br>         <br>         set_time_limit(0);    <br>         //$tApi="https://api.weibo.com/2/short_url/shorten.json?access_token=[你的token]&url_long=";<br>         $tApi="https://api.weibo.com/2/short_url/shorten.json?source=[你的appkey]&url_long=";<br>         $tApi=$tApi.urlencode($url);        <br>         $ret=file_get_contents($tApi);<br>         $ret=json_decode($ret,true);<br>         if($ret['error']) return $url;<br>         if(is_array($ret['urls'])){<br>             $r= $ret['urls'][0]['url_short'];<br>             return $r;<br>         }<br>         return $url;        <br> <br>     }<br> <br> 来自: http://www.55lm.net/

AD:真正免费,域名+虚机+企业邮箱=0元

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.