千家信息网

python单个接口测试记录

发表于:2025-01-23 作者:千家信息网编辑
千家信息网最后更新 2025年01月23日,#encoding=utf-8import chardetimport urllibimport requestsimport jsonimport osimport hashlib '
千家信息网最后更新 2025年01月23日python单个接口测试记录
#encoding=utf-8import chardetimport urllibimport requestsimport jsonimport osimport hashlib        '''校验短信验证码到接口'''def checkVCodeBeforeLoginNew():    head = {            'Content-Type': "application/json",            'X-Toon-User-ID': '9000037',            'X-Toon-User-Token': '16c9f975-',            'X-Toon-User-Agent': 'platform'        }    print "校验短信验证码到接口"    data = json.dumps({"channel":"string","code":"string","deviceName":"string","deviceToken":"string","fromWhere":"string","idfa":"string","imei":"string","macAddress":"string","mobile":"21410665218","mobileVerfiyCode":"1111","teleCode":"0086","type":0,"uuid":"34545"})    r = requests.post('{ip}', data= data,headers=head)    print r.status_code    print r.text    #print type(r.json())    #print str(r.json())

校验短信验证码到接口
200
{"meta":{"code":0,"message":"success"},"data":{"userId":9000037,"userName":"21410665218","token":"16c9f975-d5d7-4cef-9a12-fb8dc5a81792","personToken":"2f06e1c8f8372f1d2e87e89334177d28bc5453c80c53664c2ffd32700d84b26595e646b2c87a7ab1cc121271eecae42891167a68e65b5d573fb87eb5c446e3e3458d74acee38ef21dfacc4eff32140235ad96ba634ab66b686b2946ee45f726b","status":"1"}}

0