sinch可以拨打911这样的紧急号码吗?

时间:2014-12-09 04:16:12

标签: android ios sinch

可以使用sinch app-to-phoneline服务拨打911紧急服务(使用他们的iOS和Android SDK)吗?

iOS MainViewController上的代码段。我设法调用callPhoneNumber方法使用sinch调用常规PSTN线路。但是,我无法测试911的呼叫,因为我不想绑一个真正的紧急线路。

如果目标电话号码是911,我如何验证此代码是否有效?

感谢,

@implementation MainViewController

- (id<SINClient>)client {
    return [(AppDelegate *)[[UIApplication sharedApplication] delegate] client];
}

- (IBAction)call:(id)sender {
    if ([self.destination.text length] > 0 && [self.client isStarted]) {
    id<SINCall> call = [self.client.callClient callPhoneNumber:self.destination.text];
    [self performSegueWithIdentifier:@"callView" sender:call];
}

1 个答案:

答案 0 :(得分:2)

Sinch不支持拨叫紧急号码。作为一般准则,在与Sinch通话时,应根据E.164号码格式(http://en.wikipedia.org/wiki/E.164)建议指定电话号码,并应以“+”为前缀。