我正在尝试通过电子邮件源重新发送OTP。
这就是我得到的回应
这是此请求的API文档
下面是我的代码:
function resendOtp() {
const data = {
email: email,
mobile: mobile,
source: email,
}
axios
.get(`${API_URL}` + `/user/otpResend`, data)
.then((response) => {
console.log(response.data)
})
.catch((err) => {
console.log(err)
})
}
我是不是应该发送一个有效载荷来让它工作?我该怎么做?
1条答案
按热度按时间z9smfwbn1#
这些是查询参数
尝试使用查询参数命中URL