您好,登錄后才能下訂單哦!
這篇文章主要講解了“怎么用Python調用短網址接口”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么用Python調用短網址接口”吧!
接口1: http://www.sinadwz.cn/url/dwz.php?url_long=http://www.baidu.com
接口2: http://maiyurl.cn/tengxurl?url_long=http://www.baidu.com
接口3: http://www.sina-url.cn/txdwz.php?url_long=http://www.baidu.com
接口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
接口1: http://www.sinadwz.cn
接口2: http://maiyurl.cn
接口3: http://www.sina-url.cn
接口1: http://www.sina-url.cn
接口2: http://www.qqdwz.cn
接口3:http://maiyurl.cn
注意事項:
① 調用api接口時,只需將 “http://www.baidu.com”換成需要縮短的長網址即可。
② 接口支持url參數,當url中出現 & 符號時,請用 %26 代替(或者使用url編碼格式),否則參數可能會丟失。
③ 填寫url時,必須要以http(s)://開頭,否則可能會導致生出的短網址無法訪問原網站。
④ 上文提到的幾個url.cn短網址api接口,經測試都是比較穩定的,覺得好記得收藏一下,以免丟失。
常見問題:
① 長鏈接轉換,為什么結尾的參數丟失了?
答:因為url中含有特殊字符,需要使用UTF8編碼格式,將url編碼
② 接口沒有返回結果,是什么情況?
答:有些時候接口返回數據會有延遲,延時未返回則會提示生成失敗;或者是因為原鏈接被封了。
PHP調用代碼:
$url = 'http://www.baidu.com'; $api_url = ''.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%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 = '' path = '' method = 'GET' querys = '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)
感謝各位的閱讀,以上就是“怎么用Python調用短網址接口”的內容了,經過本文的學習后,相信大家對怎么用Python調用短網址接口這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。