新浪很久之前提供了長鏈接轉(zhuǎn)為短鏈接的公開API,可以把長鏈接轉(zhuǎn)為t.cn/xxx這種格式的新浪短鏈接。但是在去年9月的時候,新浪由于政策上的調(diào)整,將之前的接口關(guān)閉了!
成都創(chuàng)新互聯(lián)公司主要從事網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)邵武,10余年網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):18982081108今天就給大家?guī)韼讉€還可以使用新浪短網(wǎng)址工具:
新浪短網(wǎng)址API接口(親測可用)
接口1:/tupian/20230522/xinlang
接口2:/tupian/20230522/api
接口3:http://maiyurl.cn/weibourl?url_long=http://www.baidu.com
接口4:http://www.sinadwz.cn/tcn/api?url_long=http://www.baidu.com
使用說明:
將api接口地址中 "http://www.baidu.com"換成需要縮短的網(wǎng)址,然后直接復(fù)制前往瀏覽器中打開即可。
如需在線生成直接輸入API接口的主域名即可!
PHP調(diào)用演示:
$url = 'http://www.baidu.com'; $api_url = 'http://www.sinadwz.cn/sina.php?url_long=http://www.baidu.com; $short_url = file_get_contents($api_url); echo $short_url;
JAVA調(diào)用演示:
public static void main(String path[]) throws Exception { URL u = new URL("http://www.sinadwz.cn/sina.php?url_long=http://www.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調(diào)用演示:
import urllib, urllib2, sys host = 'http://www.wx-dwz.cn' path = 'sina.php?url_long=' method = 'GET' querys = 'url=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)
注意事項:
① 調(diào)用api接口時,只需將 “http://www.baidu.com”換成需要縮短的長網(wǎng)址即可。
② 接口支持url參數(shù),當(dāng)url中出現(xiàn) & 符號時,請用 %26 代替(或者使用url編碼格式),否則參數(shù)可能會丟失。
③ 填寫url時,必須要以http(s)://開頭,否則可能會導(dǎo)致生出的短網(wǎng)址無法訪問原網(wǎng)站。
④ 上文提到的幾個url.cn短網(wǎng)址api接口,經(jīng)測試都是比較穩(wěn)定的,覺得好記得收藏一下,以免丟失。
常見問題:
① 長鏈接轉(zhuǎn)換,為什么結(jié)尾的參數(shù)丟失了?
答:因為url中含有特殊字符,需要使用UTF8編碼格式,將url編碼!
② 接口沒有返回結(jié)果,是什么情況?
答:有些時候接口返回數(shù)據(jù)會有延遲,延時未返回則會提示生成失??;或者是因為原鏈接被封了。
③ 生成的短網(wǎng)址有效期是多久?有沒有訪問次數(shù)限制?
答:生成的url短網(wǎng)址都是永久有效的,而且沒有點擊次數(shù)限制,可以任意使用!