我正在使用 Sinch 框架进行移动验证。对于某些数字,Sinch 向我返回一个错误,上面写着"Operator not supported"。
我无法理解为什么会返回此错误。有人可以向我指出解释这一点的文档。
如果有任何帮助,我关心的号码是一个印度号码。
预先感谢。
更新 - 2015 年 12 月 4 日
这是返回错误的代码
#import <SinchVerification/SinchVerification.h>
@interface EnterPhoneNumberViewController () {
id<SINVerification> _verification;
}
@end
@implementation EnterPhoneNumberViewController
- (void)viewDidLoad {
_verification = [SINVerification SMSVerificationWithApplicationKey:@"blah-blah-blah-blah" phoneNumber:phoneNumberTextField.text];
//set up a initiate the process
[_verification initiateWithCompletionHandler:^(BOOL success, NSError *error) {
if(!success) {
//code returned with failure
NSLog(@"Error while verification : %ld %@",(long)[error code],[error localizedDescription]);
[errorLabel setText:[error localizedDescription]];
}
else {
//code returned with Success
NSLog(@"SMS With Code Successfully Sent");
}
}];
}