day1 post验证登录

Posted 不要被骄傲遮蔽了双眼

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了day1 post验证登录相关的知识,希望对你有一定的参考价值。

用post方式模拟

1.登录抽屉网

   

   

 

2.登录代码 ,URL,Form Data 中的信息写入

# coding=utf-8
#post 登录验证
import requests

form_data = {
    \'phone\':\'861111111\',
    \'password\':\'2222222\',
    \'oneMonth\':\'1\'
            }

         # requests.post(url,data=None,json=None,**kwargs)
response = requests.post(
            url=\'http://dig.chouti.com/login\',
            data=form_data,
                    )

print(response.text)

  

 3.登录错误信息

  

 

以上是关于day1 post验证登录的主要内容,如果未能解决你的问题,请参考以下文章

Day1作业要求

day1作业:登录接口

TP3 简单的登录验证控制器代码(包含验证码)

Express实战 - 应用案例- realworld-API - 路由设计 - mongoose - 数据验证 - 密码加密 - 登录接口 - 身份认证 - token - 增删改查API(代码片段

登录验证核心代码validate.php

代码审计VAuditDemo 后台登录功能验证码绕过