接口1:
http://sina-t.cn/api?link=http://baidu.com接口2:
http://tttool.cn/sina_api?url=http://baidu.com接口3:
http://knurl.cn/tcnapi?url_long=http://baidu.com接口4:
http://migourl.cn/sina_shorturl.html?text=http://baidu.com使用方法:
将最後的"http://baidu.com"換成要縮短的長連結即可,可以程式調用,也可以直接通路得到結果
這四個接口傳回格式相對而言比較簡單,直接傳回結果
調用demo
PHP調用代碼:
$url = 'http://www.baidu.com';
$api_url = 'http://sina-t.cn/api?link='.urlencode($url);
$short_url = file_get_contents($api_url);
echo $short_url;
JAVA調用代碼:
public static void main(String path[]) throws Exception {
URL u = new URL("http://sina-t.cn/api?link=http%3A%2F%2Fwww.baidu.com");
InputStream in = u.openStream();
ByteArrayOutputStream out = new ByteArrayOutputStream();
try {
byte buf[] = new byte[1024];
int read = 0;
while ((read = in .read(buf)) > 0) {
out.write(buf, 0, read);
}
} finally {
if ( in != null) {
in .close();
}
}
byte b[] = out.toByteArray();
System.out.println(new String(b, "utf-8"));
}
python調用代碼:
import urllib, urllib2, sys
host = 'http://sina-t.cn'
path = 'api'
method = 'GET'
querys = 'link=http%3A%2F%2Fwww.baidu.com'
bodys = {}
url = host + path + '?' + querys
request = urllib2.Request(url)
response = urllib2.urlopen(request)
content = response.read()
if (content):
print(content)
注意事項
1、調用api接口時,隻需将 “
http://baidu.com”換成需要縮短的長網址即可。
2、接口支援url參數,當連結中出現 & 符号時,請用 %26 代替(或者使用url編碼),否則參數可能會丢失。
3、填寫連結時,必須要以http(s)://開頭,否則可能會導緻生出的短網址無法通路原網站。