In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-02 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
This article mainly explains "how to use Java to call the official interface of Wechat domain name". The content of the article is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn "how to use Java to call the official interface of Wechat domain name".
Interface address
1. Http://www.qqdwz.cn/ymjc?url_long=http://www.baidu.com
2. Http://www.maoapi.cn/wxymjc?url_long=http://www.baidu.com
API description: www.baidu.com can be replaced with a domain name link that needs to be tested. Here, the detected object can be a domain name, a link, or a link with parameters.
Note:
When ① calls the api API, you only need to enter the long URL that needs to be compressed after the URL=.
The ② interface supports the url parameter. When the & symbol appears in the url, use% 26 instead (or use the url encoding format), otherwise the parameter may be lost.
③ must start with http (s): / / when filling in url, otherwise it may cause the test to fail.
Calling code
Demo of PHP call:
$url = 'http://www.baidu.com';$api_url =' http://www.qqdwz.cn/ymjc?url_long=http://www.baidu.com; $short_url = file_get_contents ($api_url); echo $short_url
Demo of JAVA call:
Public static void main (String path []) throws Exception {URL u = new URL ("http://www.qqdwz.cn/ymjc?url_long=http://www.baidu.com"); InputStream in = u.openStream (); ByteArrayOutputStream out = new ByteArrayOutputStream (); try {byte buf [] = new byte [1024]; int read = 0sat 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"));}
Demo of Python call:
Import urllib, urllib2, syshost = 'http://www.qqdwz.cn/' path = 'ymjc?url_long='method =' GET'querys = 'url=http%3A%2F%2Fwww.baidu.com'bodys = {} url= host + path +'?'+ querysrequest = urllib2.Request (url) response = urllib2.urlopen (request) content = response.read () if (content): print (content) Thank you for reading. This is the content of "how to use Java to call the official API of Wechat Domain name". After the study of this article, I believe you have a deeper understanding of how to use Java to call the official interface of Wechat domain name, and the specific usage needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.