モバイル検証に 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");
}
}];
}