LCError(code: 213, reason: Optional("An user with the specified mobile phone number was not found."), userInfo: nil, underlyingError: nil)
这个要怎么解决?现在用户没法注册了@pzheng
请问这个错误是调用哪个 API 后返回的?
突然就不行了,获取验证码时候
_ = LCUser.requestVerificationCode(mobilePhoneNumber: "+8618200008888") { result inswitch result {case .success:breakcase .failure(error: let error):print(error)}}
LCUser.requestVerificationCode(mobilePhoneNumber: 是请求验证已经存在的用户的手机号的 API,如果用户不存在,就会返回该错误。
LCUser.requestVerificationCode(mobilePhoneNumber:
需要注意的一点是 mobilePhoneNumber 参数必须和 User 数据中的 mobilePhoneNumber 完全匹配,才能发送短信。如果 User 的 mobilePhoneNumber 是 18200008888,那么上面的调用就会返回错误。