3.4 监控列表-网址自动监控
本API接口对应的会员中心页面:
https://www.wechaturl.us/user/index.html#business_management/url_cycle_check
请求URL:
https://wechaturl.us/api/UrlCycleCheck.json
请求方式:
POST 或者GET(如果用GET,特殊字符串需要url编码)
参数:
参数名
必选
类型
说明
appid
是
int
http://www.wechaturl.us/user/index.html 去免费获取appid
appkey
是
string
http://www.wechaturl.us/user/index.html 去免费获取appkey
type
是
string
值:list
page
否
int
当前页面,默认为1
rows
否
int
每页面获取的条数,默认10,最大是50
返回示例
https://wechaturl.us/api/UrlCycleCheck.json?appid=37****15&appkey=a50d38748960******80ae1a725b7c95&type=list&page=1&rows=5
{
"code": 1,
"message": "ok",
"data": {
"count": 2, #list的总计条数,比如下面是2条,这里count就是2
"list": [
{
"url": "http://www.baidu.com/tieba",
"check_type": "wechat",
"status": "4000", #4000正常,2000被封,0暂停
"is_monitor": "0", #是否自动开启监控
"frequency": "7500", #频率
"last_check_date": "2019-08-03 01:10:54", #最近一次监控日期
"check_times": "1" #总计监控次数
},
{
"url": "https://ai.google.com/tool/",
"check_type": "wechat",
"status": "2000",
"is_monitor": "0",
"frequency": "7500",
"last_check_date": "2019-07-29 21:43:37",
"check_times": "7"
}
]
}
}
最后更新于
这有帮助吗?