Sinch:运算符不支持错误

Sinch : Operator not Supported Error

我正在使用 Sinch 框架进行移动验证。对于某些数字,Sinch returns 给我一个错误 "Operator not supported"

我无法理解为什么会返回此错误。有人可以指点我解释这一点的文档吗?

如果对我有任何帮助,我关心的是印度号码。

提前致谢。

更新 - 2015 年 12 月 4 日

这是returns我出错的代码

#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");
            }
        }]; 
}

今天我们发布了一个新的 sdk 来帮助您获取号码,请查看下载量。com/download这将帮助您获得正确的号码以供验证。该错误意味着 number/carrier 不受支持。这可能是出于多种原因,google 语音号码因不受支持的运营商欺诈而被阻止。

如果您认为该特定号码有误,请联系支持@sinch.com并提供该号码,我们可以进行调查。