新乡核酸检测预约码解码

一、预约码

1.1 预约码生成途径

image

1.2 预约码生成地址

xxapp-h5.ziyunzhihui.com/NCP/notice/hesuanjiance.html

二、解码

2.1 生成预约码

image

2.2 二维码生成方式溯源

image
image

2.3 在线解码

使用在线解码工具
image

2.4 信息获取接口

import requests

url = 'https://xxapp-api.ziyunzhihui.com/app-custom/nucleic/user/selectByIdNum'

HEADER = {
    'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) '
    'Chrome/99.0.4844.51 Safari/537.36 Edg/99.0.1150.39',
    'Referer': 'https://xxapp-h5.ziyunzhihui.com/',
    'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
}

pyload = {
    'idNum': '110101199003079657',
}

response = requests.post(url, headers=HEADER, data=pyload)
print(response.json())

image

posted @ 2022-03-19 23:17  那个白熊  阅读(111)  评论(0)    收藏  举报