Blogger Information
Blog 1
fans 0
comment 0
visits 647
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
微信域名拦截检测接口与微信域名监控通知最新版本
环环紧扣
Original
647 people have browsed it

一,微信域名检测

微信域名检测api接口,我相信很多做微信营销的用户都在使用,但是经常碰到接口不稳定,域名特殊问题检查不出来,比如重定向报蓝,非官方网站等。那么今天给大家分享一个非常稳定,且可检测出网站无法访问报红,重定向,非官方网站,复制链接浏览器打开的四大域名问题的接口。

微信域名检测api接口:

http://www.xiaohejc.cn/check_api.php?url_long=http://www.baidu.com

使用说明:将api接口地址中 "http://www.baidu.com"换成需要检测的域名,然后直接复制前往浏览器中打开即可。

PHP调用演示:

$url = 'http://www.baidu.com';
$api_url = 'http://www.xiaohejc.cn/check_api.php?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.xiaohejc.cn/check_api.php?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.xiaohejc.cn/'
path = 'check_api.php?url_long='
method = 'GET'
querys = 'url=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)

注意事项:

① 调用api接口时,只需将 “http://www.baidu.com”换成需要检测的域名或网址。

② 接口支持url参数,当url中出现 & 符号时,请用 %26 代替,否则参数可能会丢失。

③ 正式版接口请根据提示联系接***务商进行***开通会员版。

二,微信域名监控通知


监控通知即实时监控您的域名在微信中的状态,当域名出现在微信中不能正常打开的情况,将通过您预留的联系方式及时通知您处理。

通知方式:

1,邮件通知:向您预留的邮箱账号发送被封域名详情,如图。

2,微信通知:完整的网站域名监控报告详细发送到您的微信号,如图。

3,短信通知:以短信的形式告知您被封的域名。如图。

4,电话语音通知:发现被封域名将会向您预留的手机号拨打语音电话提醒。


开通方式:

1,打开官方网站:http://www.xiaohejc.cn,联系客服***微信监控通知使用权限。

2,取得权限后右上角登录您的账号。

3,登录后的用户点击“监控通知”菜单即可进入下图所示界面。

4,选择添加域名,添加您要监控的域名,并填入您要接收通知的联系方式。如下图:

5,点击保存,当收到域名被封提醒后,可随时登录本站进行更换新域名,如下图。


域名监控通知的优点:

1,一站傻瓜式操作,非技术人员也可完成所有操作流程,方便快捷。    

2,监控到域名被封便会通过您选择的邮件,短信,微信或者电话语音其中一种通知方式通知您问题详情,以便您及时作出应对。

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