溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

新浪短鏈接 推薦幾個(gè)最新的新浪t.cn短鏈接生成的API接口

發(fā)布時(shí)間:2020-08-07 23:20:12 來(lái)源:ITPUB博客 閱讀:365 作者:放心的飛翔 欄目:移動(dòng)開(kāi)發(fā)

新浪很久之前提供了長(zhǎng)鏈接轉(zhuǎn)為短鏈接的公開(kāi)API,可以把長(zhǎng)鏈接轉(zhuǎn)為t.cn/xxx這種格式的新浪短鏈接。但是在去年9月的時(shí)候,新浪由于政策上的調(diào)整,將之前的接口關(guān)閉了!

今天就給大家?guī)?lái)幾個(gè)還可以使用新浪短網(wǎng)址工具:

新浪短網(wǎng)址API接口(親測(cè)可用)

接口1:http://www.sina-url.cn/xinlang?url_long=http://www.baidu.com

接口2:http://www.qqdwz.cn/urlcn/api?url_long=http://www.baidu.com

接口3:http://maiyurl.cn/weibourl?url_long=http://www.baidu.com

接口4:http://www.sinadwz.cn/tcn/api?url_long=http://www.baidu.com

使用說(shuō)明:

將api接口地址中 "http://www.baidu.com"換成需要縮短的網(wǎng)址,然后直接復(fù)制前往瀏覽器中打開(kāi)即可。

如需在線生成直接輸入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)

注意事項(xiàng):

① 調(diào)用api接口時(shí),只需將 “http://www.baidu.com”換成需要縮短的長(zhǎng)網(wǎng)址即可。

② 接口支持url參數(shù),當(dāng)url中出現(xiàn) & 符號(hào)時(shí),請(qǐng)用 %26 代替(或者使用url編碼格式),否則參數(shù)可能會(huì)丟失。

③ 填寫(xiě)url時(shí),必須要以http(s)://開(kāi)頭,否則可能會(huì)導(dǎo)致生出的短網(wǎng)址無(wú)法訪問(wèn)原網(wǎng)站。

④ 上文提到的幾個(gè)url.cn短網(wǎng)址api接口,經(jīng)測(cè)試都是比較穩(wěn)定的,覺(jué)得好記得收藏一下,以免丟失。

常見(jiàn)問(wèn)題:

① 長(zhǎng)鏈接轉(zhuǎn)換,為什么結(jié)尾的參數(shù)丟失了?

答:因?yàn)閡rl中含有特殊字符,需要使用UTF8編碼格式,將url編碼!

② 接口沒(méi)有返回結(jié)果,是什么情況?

答:有些時(shí)候接口返回?cái)?shù)據(jù)會(huì)有延遲,延時(shí)未返回則會(huì)提示生成失?。换蛘呤且?yàn)樵溄颖环饬恕?/p>

③ 生成的短網(wǎng)址有效期是多久?有沒(méi)有訪問(wèn)次數(shù)限制?

答:生成的url短網(wǎng)址都是永久有效的,而且沒(méi)有點(diǎn)擊次數(shù)限制,可以任意使用!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI