Blogger Information
Blog 2
fans 0
comment 0
visits 1314
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
分享,微信(QQ)域名检测接口的使用场景与说明
Peanno
Original
837 people have browsed it

微信域名检测接口和QQ域名检测接口API皆是由腾讯官方对外公布的域名查询接口,通过接口可实时查询域名在微信和QQ中的状态信息。如果状态异常则返回结果提示“域名被封”,如果未有异常则返回结果提示“域名正常”。

微信(QQ)域名检测接口

请求地址1:http://www.60ht.cn/wxcheck/api.php?url=http://www.baidu.com

请求地址2:http://www.xiaocaoff.cn/api/check.php?url=http://www.baidu.com

应用场景

由于微信和QQ对外部链接的内容规范审核比较严格,所以可能一不小心你的网页就会因为含敏感词汇或者违规内容而导致你的域名被微信或者QQ管家拦截报红。

那么我们要想实时检测域名的生存状态,就需要请求域名检测接口去实时查询。实时检测域名的状态,从而才可以防患于未然,不影响推广。上面分享的微信(QQ)域名拦截检测api,是基于腾讯官方接口研发,可以实时检测微信或QQ内域名是否安全,有异常则会及时通知,非常稳定,准确率达100%。

使用说明

1、在线使用

将api接口地址中的“http://www.baidu.com”换成你需要检测的域名(带不带http://都可以),然后复制完整接口地址前往浏览器粘贴打开即可返回结果。

2、请求接口

如果觉得在线使用很麻烦,或者需要实时查询,那么需要将接口对接到服务器程序中,设置返回参数,即可实时检测并返回域名在微信内的状态。

接口文档

PHP请求示例

  1. $url = 'http://www.baidu.com';
  2. $api_url = 'http://www.60ht.cn/wxcheck/api.php?url=http://www.baidu.com;
  3. $short_url = file_get_contents($api_url);
  4. echo $result_url;

Java请求示例

  1. public static void main(String path[]) throws Exception {
  2. URL u = new URL("http://www.60ht.cn/wxcheck/api.php?url=http://www.baidu.com");
  3. InputStream in = u.openStream();
  4. ByteArrayOutputStream out = new ByteArrayOutputStream();
  5. try {
  6. byte buf[] = new byte[1024];
  7. int read = 0;
  8. while ((read = in .read(buf)) > 0) {
  9. out.write(buf, 0, read);
  10. }
  11. finally {
  12. if ( in != null) {
  13. in .close();
  14. }
  15. }
  16. byte b[] = out.toByteArray();
  17. System.out.println(new String(b, "utf-8"));
  18. }

Python请求示例

  1. import urllib, urllib2, sys
  2. host = 'http://www.60ht.cn/'
  3. path = '/wxcheck/api.php'
  4. method = 'GET'
  5. querys = 'url=http%3A%2F%2Fwww.baidu.com'
  6. bodys = {}
  7. url = host + path + '?' + querys
  8. request = urllib2.Request(url)
  9. response = urllib2.urlopen(request)
  10. content = response.read()
  11. if (content):
  12. print(content)

 

注意事项:

1、调用api接口时,只需将 “http://www.baidu.com”替换成需要检测的域名即可。

2、API接口支持域名中带参数,当域名中出现 & 符号时,要用 %26 代替(或者使用url编码格式),否则可能会导致返回结果不准确。

3、域名是不是http(s)://开头都行,如果要检测二级域名,要把url换成二级域名。检测主域名的话直接填主域名即可。

常见问题:

问:为什么接口返回结果与实际不符?

答:链接中的携带的特殊字符串没有进行编码,导致参数没有生效;或者是因为待检测的域名格式不对。

问:接口没有返回结果,是什么情况?

答:有些时候接口返回数据有延迟,超时了则会返回失败,msg值即为空;或者是调用方法不对,详情可见上文API请求示例。

问:接口是否限制请求次数和请求频率?

答:正式接口不限次请求次数,不限制请求频率,可实时检测。

原文转载自:http://www.60ht.cn/check01.html

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post