众所周知,新浪微博有一个短网址功能,会把你在微博发的原链接转成http://t.cn/XXOO的形式。开放了API,也就是这个:
http://open.weibo.com/wiki/2/short_url/shorten ,调用这玩意还居然要access_token ,我也是醉了,搜索了一下,找到一个旧版的接口,不需要access_token, 只要申请或者随便找一个appkey就能用了, 详细说明看这篇https://www.douban.com/note/249723561/ ,
对应的URL请求地址为: xml:http://api.t.sina.com.cn/short_url/shorten.xml json:http://api.t.sina.com.cn/short_url/shorten.json 请求方式:GET 请求参数: source:应用的appkey url_long:需要转换的长链接 举个例子: xml:http://api.t.sina.com.cn/short_url/shorten.xml?source=3271760578&url_long=http://www.douban.com/note/249723561/ 返回内容为: <urls> <url> <url_short>http://t.cn/zWXySpZ</url_short> <url_long>http://www.douban.com/note/249723561/</url_long> <type>0</type> </url> </urls> json:http://api.t.sina.com.cn/short_url/shorten.json?source=3271760578&url_long=http://www.douban.com/note/249723561/ 返回内容为: [{"url_short":"http://t.cn/zWXySpZ","url_long":http://www.douban.com/note/249723561/","type":0}]
测试了一下,服务仍然可用,但这个接口是有问题的,貌似是旧版api遗留下来的, 首先这个请求参数url_long的地址不必使用url_encode, 新版是需要的(而且也是必要的),经测试发现被 url_encode过的long_url只会返回”[]”,这导致当请求原链接带”&”时就不能正确识别,比如http://blog.cellmean.com?post_type=post&id=10086, 则发送:
“http://api.t.sina.com.cn/short_url/shorten.json?source=3271760578&url_long=http://blog.cellmean.com?post_type=post&id=10086”;
返回:
[
{
“url_short”: “http://t.cn/RiZMd85”,
“url_long”: “http://blog.cellmean.com?post_type=post”,
“type”: 0
}
]
这样”&id=10086″的部分会被吃掉,实际上返回的是”http://blog.cellmean.com?post_type=post”的短链接。如果要得到正确的结果,只能对”&”单独进行一次urlencode,替换成”%26″,或者转换成html实体”&”;
即请求:
“http://api.t.sina.com.cn/short_url/shorten.json?source=3271760578&url_long=http://blog.cellmean.com?post_type=post%26id=10086”
返回值:
[{“url_short”:”http://t.cn/RiZqrtU”,”url_long”:”http://blog.cellmean.com?post_type=post&id=10086″,”type”:0}]
然后我简单封装了一下, 代码如下:
function sina_url_shorten( $url,$source='3271760578' ) { echo $request_url = "http://api.t.sina.com.cn/short_url/shorten.json?source=".$source .'&url_long='. str_replace("&","%26",$url); $data = file_get_contents($request_url); $array = json_decode($data,true); if( isset($array[0] )) { return $array[0]['url_short']; }else{ return false; } } $long_url = 'http://blog.cellmean.com/book/%E5%8F%B2%E8%AE%B0/?cid=5689142fa8c4a4100065298&from=10086'; echo sina_url_shorten($long_url);
没有弄http的错误处理,密钥是网上找到的,可能会有调用频率限制,可以在这个页面申请一个 : http://open.weibo.com/connect 然而这个立即连接半天点不动。
最后说明:标题灵感源于“UC震惊部”:)