本来是自己为了弄自动签到的,把自己抓到的数据分享给大家,大家有需求的可以参考参考
小小签到获取签到列表
请求方式get
http://api-xcx.qunsou.co/xcx/qq/checkin/v3/list?type=5&page=1&count=10&access_token=[token值]&tag=0
=======返回到的数据==========
{
"sta": 0,
"msg": "",
"data": [
{
"cid": "",
"title": "",//签到标题
"banner": "",//图标
"start_date": 1581868800,
"end_date": 4670495999,
"start_time": 0,
"end_time": 86399,
"time_list": [
[
39600,
46800
]
],
"owner": "",//发起人
"owner_pic": "",//发起人头像
"no_forward": 0,
"gold_name": 0,
"name_color": "",
"adv_avatar": "",
"is_owner": 0,
"pic_text": 1,
"join_num": "43",//人数
"status": 1,
"censor_status": 0,
"fee": 0,
"top": 1,
"has_check": 1,
"template": 0,
"show_remove_tip": 0
}
],
"show_summary": 0,
"show_remove_tip": 0
}
========================
发送签到内容
===========请求头========
POST /xcx/qq/checkin/v3/doit HTTP/1.1
User-Agent: Mozilla/5.0 (Linux; Android 6.0.1; DUK-AL20 Build/MXC89K; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/44.0.2403.119 Mobile Safari/537.36 QQ/MiniApp QQ/8.3.5
Referer: https://appservice.qq.com/1108310646/1.1.1/page-frame.html
content-type: application/json
Content-Length: 301
Host: api-xcx.qunsou.co
Connection: Keep-Alive
Accept-Encoding: gzip
========================
=====post数据内容======
{
"cid": "",//[必填]
"formid": "",//有没有都无所谓
"text": "",//签到文本内容[必填]
"pic": [],
"audio": [],
"audio_len": [],
"video": [],
"access_token": "",//[必填]
"steps": -1,
"mp_url": "",
"mp_title": "",
"mp_icon": ""
}
====================