# email-reset-password-demo **Repository Path**: lm_8692769/email-reset-password-demo ## Basic Information - **Project Name**: email-reset-password-demo - **Description**: 基于SpringBoot,邮箱重置密码 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 3 - **Forks**: 1 - **Created**: 2022-05-03 - **Last Updated**: 2025-01-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: SpringBoot ## README # 根据邮箱重置密码 # 接口测试示例 ## /测试邮箱验证码 ```text 暂无描述 ``` #### 接口状态 > 已完成 #### 接口URL > http://localhost:8080/mail/getCode?staffNumber=test01&mailAddress=8692769@qq.com #### 请求方式 > GET #### Content-Type > form-data #### 请求Query参数 参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 --- | --- | --- | --- | --- staffNumber | test01 | Text | 是 | - mailAddress | 8692769@qq.com | Text | 是 | - #### 预执行脚本 ```javascript 暂无预执行脚本 ``` #### 后执行脚本 ```javascript 暂无后执行脚本 ``` ## /测试验证码重置密码 ```text 暂无描述 ``` #### 接口状态 > 已完成 #### 接口URL > http://localhost:8080/user/codeUpdatePwd #### 请求方式 > POST #### Content-Type > json #### 请求Body参数 ```javascript { "staffNumber":"test01", "code": "231752", "loginPassword":"123" } ``` #### 预执行脚本 ```javascript 暂无预执行脚本 ``` #### 后执行脚本 ```javascript 暂无后执行脚本 ```