当前位置:网站首页>One of the anti climbing methods

One of the anti climbing methods

2022-07-07 23:38:00 m0_ thirty-seven million eight hundred and eighty-one thousand

Add request header

import requests

headers = {
    
    'token': '----------------------------',
    'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36',
    'aliyungf_tc': '7c8190ef77edb47fb5c719e345ea289fb080edc262ea06f68231a2714bab8d40',
}

r = requests.get(
    'https://open.--------.com/api/afterSales/detailData/qryTeacherListByRoleType?deptId=15439&startTime=1644422400000&endTime=1644508799000&deptIdChain=1001-15439&roleType=6',
    headers=headers)
datas = r.json()
print(datas)
------------------------------------------------------
 Return without request header 
{
    'traceId': '65005003b7cf4d96ad3246ac82a5f199', 'status': '1007', 'msg': ' Please contact the person in charge to add a role group in Fuxi system !', 'data': {
    }}
----------------------------------------------------------
 Return with request header 
{
    'status': '0', 'msg': ' success ', 'data': {
    'deptInfoId': 15439, 'teacherId': 15439, 'deptName': '---------', 'continuePurchaseNum': 0, 'teachingClassNum': 128, 'unfinishClassNum': 808, 'firstConnectRateInfo': '3/4', 'firstConnectRate': 75.0, 'houClassStudentNum': 0, 'averageHouClassTime': 0, 'liveChapterNum': 0, 'liveAttendStudentRateInfo': '0/0', 'liveAttendStudentRate': 0, 'formalLiveAttendStudentRateInfo': '0/0', 'formalLiveAttendStudentRate': 0, 'playbackAttendStudentRateInfo': '0/0', ......

Notice the three parameters in the request header , It is likely to change .

原网站

版权声明
本文为[m0_ thirty-seven million eight hundred and eighty-one thousand ]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202130557188704.html