为什么 LeanCloud 发送短信验证码时报 403 错
这个问题如何解决哈,在线等
Axios.post(
"https://api.leancloud.cn/1.1/requestSmsCode",
{
mobilePhoneNumber : '15209893158',
name : "快乐星猫",
smsType:'sms'
},
{
headers : {
"X-LC-Id" : "xxxxxx",
"X-LC-Key" : "xxxxx"
},
}
).then(function(response){
console.log(response);
}).catch(function (error) {
console.log(error);
});
Axios.post(
"https://api.leancloud.cn/1.1/requestSmsCode",
{
},
{
data:{
mobilePhoneNumber : '15209893158',
name : "快乐星猫"
},
headers : {
"X-LC-Id" : "xxxxx",
"X-LC-Key" : "xxxxx",
"Content-Type": "application/json"
},
}
).then(function(response){
console.log(response);
}).catch(function (error) {
console.log(error);
});
这两种写法都报403错
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
或者
谢邀。
首先看到
403
那就是访问被服务器端拒绝,应该去看下这个API接口的官方文档,对于为什么出现403的说明。我感觉应该是设置
header
这块出了问题。 我没有用过这个API,所以无法直接看出具体是哪里的问题,sorry……{"code":1,"error":{"status":403,"code":119,"error":"该操作已被禁止,请变更应用选项『启用通用的短信验证码服务(开放 requestSmsCode 和 verifySmsCode 接口)』。"}}