使用 6 位而不是 4 位同步 SMS 验证
Synch SMS Verification with 6 digits instead of 4
我得到的Synch SMS验证只有4位数字。我如何让它变成 6 位数?
下面是我正在使用的代码。此代码似乎只发送 4 位数字进行验证,而我希望它是 6 位数字。
var verification: Verification! // this is defined in the class
private func initiateVerification() {
verification = SMSVerification(applicationKey: SinchConstants.applicationKey, phoneNumber: phoneNumber)
verification.initiate { (success, error) in
dispatch_async(dispatch_get_main_queue(), {
if success {
self.handleSuccess()
} else {
if let error = error where error.code == -1001 {
self.handleSuccess()
} else {
self.handleError(error)
}
}
})
}
}
您无法在仪表板中控制它,但如果您邮寄您的 appkey 并且想要 6 位数字来支持,我很乐意为您更改它@sinch.com
我得到的Synch SMS验证只有4位数字。我如何让它变成 6 位数?
下面是我正在使用的代码。此代码似乎只发送 4 位数字进行验证,而我希望它是 6 位数字。
var verification: Verification! // this is defined in the class
private func initiateVerification() {
verification = SMSVerification(applicationKey: SinchConstants.applicationKey, phoneNumber: phoneNumber)
verification.initiate { (success, error) in
dispatch_async(dispatch_get_main_queue(), {
if success {
self.handleSuccess()
} else {
if let error = error where error.code == -1001 {
self.handleSuccess()
} else {
self.handleError(error)
}
}
})
}
}
您无法在仪表板中控制它,但如果您邮寄您的 appkey 并且想要 6 位数字来支持,我很乐意为您更改它@sinch.com