获取新浪微博的T网址链接 [ 未指定版本 ]
///////////////////////////////////////////////////////////////////////获取新浪微博的T网址链接
//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 新版
function GetTurl($url=''){
set_time_limit(0);
//$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);
$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/<br />
共 0 个回答
wuyuxifeng
最后登录:2024-06-11
在线时长:30小时19分
- 粉丝7
- 金钱259
- 威望30
- 积分859