您好,登錄后才能下訂單哦!
這篇文章主要講解了“Python、JAVA、PHP怎么調用api接口”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Python、JAVA、PHP怎么調用api接口”吧!
返回說明:
{"status":1,"msg":"域名正常"}
{"status":0,"msg":"域名被封"}
PHP調用演示:
$url = 'http://www.baidu.com'; $api_url = 'http://www.maoapi.cn/wxymjc?url_long?url_long=http://www.baidu.com; $short_url = file_get_contents($api_url); echo $short_url;
JAVA調用演示:
public static void main(String path[]) throws Exception { URL u = new URL("http://www.maoapi.cn/wxymjc?url_long?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調用演示:
import urllib, urllib2, sys host = 'http://www.maoapi.cn' path = '/wxymjc?url_long' method = 'GET' querys = 'url_long=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、JAVA、PHP怎么調用api接口”的內容了,經過本文的學習后,相信大家對Python、JAVA、PHP怎么調用api接口這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。