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

浏览:1013 发布日期:2014/08/14 分类:功能实现 关键字: 新浪短网址
///////////////////////////////////////////////////////////////////////获取新浪微博的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网址链接
    //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 新版
    function GetTurl($url=''){
        
        set_time_limit(0);    
        //$tApi="https://api.weibo.com/2/short_url/shorten.json?access_token=[你的token]&url_long=";
        $tApi="https://api.weibo.com/2/short_url/shorten.json?source=[你的appkey]&url_long=";
        $tApi=$tApi.urlencode($url);        
        $ret=file_get_contents($tApi);
        $ret=json_decode($ret,true);
        if($ret['error']) return $url;
        if(is_array($ret['urls'])){
            $r= $ret['urls'][0]['url_short'];
            return $r;
        }
        return $url;        

    }

来自: http://www.55lm.net/
评论( 相关
后面还有条评论,点击查看>>