您好,登錄后才能下訂單哦!
這篇文章主要介紹“PHP和Python怎么調(diào)用新浪短網(wǎng)址API接口”,在日常操作中,相信很多人在PHP和Python怎么調(diào)用新浪短網(wǎng)址API接口問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”PHP和Python怎么調(diào)用新浪短網(wǎng)址API接口”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
使用說(shuō)明:
將api接口地址中 "http://www.baidu.com"換成需要縮短的網(wǎng)址,然后直接復(fù)制前往瀏覽器中打開(kāi)即可。
PHP調(diào)用演示:
$url = 'http://www.baidu.com'; $api_url = 'http://qingmeidwz.cn/shorten.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://qingmeidwz.cn/shorten.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://qingmeidwz.cn/' path = 'shorten.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 代替,否則參數(shù)可能會(huì)丟失。
③ 填寫(xiě)url時(shí),必須要以http(s)://開(kāi)頭,否則可能會(huì)導(dǎo)致生出的短網(wǎng)址無(wú)法訪問(wèn)原網(wǎng)站。
④ 上文的t.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>
③ 生成的t.cn短網(wǎng)址有效期是多久?有沒(méi)有訪問(wèn)次數(shù)限制?
答:生成的t.cn短網(wǎng)址永久有效的,而且沒(méi)有點(diǎn)擊次數(shù)限制,可以任意使用
到此,關(guān)于“PHP和Python怎么調(diào)用新浪短網(wǎng)址API接口”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
免責(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)容。