本篇內(nèi)容主要講解“PHP怎么實(shí)現(xiàn)長(zhǎng)鏈接轉(zhuǎn)化成新浪短鏈接API接口”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“PHP怎么實(shí)現(xiàn)長(zhǎng)鏈接轉(zhuǎn)化成新浪短鏈接API接口”吧!
成都創(chuàng)新互聯(lián)公司專業(yè)為企業(yè)提供蒙城網(wǎng)站建設(shè)、蒙城做網(wǎng)站、蒙城網(wǎng)站設(shè)計(jì)、蒙城網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、蒙城企業(yè)網(wǎng)站模板建站服務(wù),十年蒙城做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
新浪短網(wǎng)址接口地址:
http://www.sinadwz.cn/sina.php?url_long=http://www.baidu.com
說明:將上面短網(wǎng)址api接口的標(biāo)紅部分的鏈接替換成需要縮短的長(zhǎng)連接即可!
PHP調(diào)用代碼:
$url = 'http://www.baidu.com'; $api_url = ''.urlencode($url); $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%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調(diào)用代碼:
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)
1、使用api接口時(shí),只需將 URL=后的鏈接替換成自己這邊需要縮短的長(zhǎng)鏈接即可。
2、接口支持參數(shù)傳遞,當(dāng)鏈接中出現(xiàn) & 符號(hào)時(shí),請(qǐng)用 %26 代替(或者使用url編碼),否則攜帶的參數(shù)會(huì)丟失。
3、填寫鏈接時(shí),必須使用http(s)://協(xié)議,否則API接口將會(huì)無法生成短鏈接!
到此,相信大家對(duì)“PHP怎么實(shí)現(xiàn)長(zhǎng)鏈接轉(zhuǎn)化成新浪短鏈接API接口”有了更深的了解,不妨來實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!