sinch

Sinch Sms Verification 2.0.3 SDK Swift 3

走远了吗. 提交于 2019-12-11 07:58:59
问题 Hi Im using Sinch sms verification to sign up users in my app but after updating my code to swift 3 (and sinch sdk currently 2.0.3), Im getting the following error Use of unresolved identifier 'SINPhoneNumberUtil' Use of unresolved identifier 'SINPhoneNumberFormat' Use of undeclared type 'SINPhoneNumber' That the code who was working with previous SDK and Swift 2 if (result.success){ let phoneUtil = SINPhoneNumberUtil() do { let defaultRegion = DeviceRegion.currentCountryCode() let phoneNum:

SINCH :: Session Management for App to App Call

ぃ、小莉子 提交于 2019-12-11 06:26:28
问题 I am developing an app with SINCH Platform for VOIP feature. I am performing an app to app call . I am aware that if Callback URL of application Server is set on SINCH Dashboard then it will not trigger DICE (Disconnect Call Event callback) [refer here] event for App to App Call. But I have to manage all call details with my App Server. How Can I manage it from my Mobile App? (Like how can i notify my app server that last call was about of 50 seconds? So my server can manage relevant credit

Showing in-call status bar (double height) for a custom VoIP app in iOS

可紊 提交于 2019-12-11 06:13:01
问题 I have created a VoIP app in iOS using the Sinch library. I am able to make calls successfully, but am having trouble creating the double-height in-call status bar. By this I mean, my call window appears, and on that window I have a button to leave the view and go somewhere else (WITHOUT hanging up the call) and I would like a green double height in-call status bar to be displayed so that I may tap it and return me to call view. When I send the app to the background, I see the double-height

Pushkit with Sinch VOIP not working with pushkit

白昼怎懂夜的黑 提交于 2019-12-09 11:56:40
问题 I am trying to implement App-to-App calling with Sinch in my IOS app. I have implemented Pushkit in my iOS app with Sinch but the push notification is not working when the app is in background. I have two questions. Do I need another web service to send push notification to my app for incoming app separately or Sinch handles it itself. If it does handle itself then what am I missing in my code. #import "AppDelegate.h" @interface AppDelegate () @end @implementation AppDelegate - (BOOL

What is the Session period for SINCH Pin Verification?

安稳与你 提交于 2019-12-08 08:24:28
问题 We are developing an android and iOS app which requires number verification. I am doing it using SINCH Verification SDK. For my app, number verification is being done from Server side using REST API call using SINCH REST API . We are not sure what is the default time period (Session Time Period) for SINCH Pin verification . And how can i change it if i wish to change it? Can anyone help me finding out default SINCH Pin Verificaiton Seesion time? Thanks in advance. 来源: https://stackoverflow

What firewall ports do I need to open to allow Sinch and WebRTC to work?

扶醉桌前 提交于 2019-12-07 13:30:50
问题 Sinch has been working just great over the internet and various NATed networks. But I've just tried the device behind an enterprise firewall, and suddenly we can't make calls. More specifically devices can call each other, but the moment onCallEstablished is called (audio streams are connected), the calls drop out. No audio from the remote end is ever heard. It definitely only happens on this particular network. I'm assuming that this is a firewall issue, but have no idea what ports we need

Sinch, message shouldSendPushNotification not being called

冷暖自知 提交于 2019-12-06 06:57:55
I'm trying to implement the push functionality in Sinch. I've set up my since client as such: [_client setSupportMessaging:YES]; [_client setSupportPushNotifications:YES]; _client.delegate = self; [_client start]; [_client startListeningOnActiveConnection]; Then on - (void)clientDidStart:(id<SINClient>)client { client.messageClient.delegate = self; } And in AppDelegate.h - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken { // get previously initiated Sinch client id<SINClient> client = [SinchClient sharedClient].client;

What firewall ports do I need to open to allow Sinch and WebRTC to work?

梦想的初衷 提交于 2019-12-06 00:43:09
Sinch has been working just great over the internet and various NATed networks. But I've just tried the device behind an enterprise firewall, and suddenly we can't make calls. More specifically devices can call each other, but the moment onCallEstablished is called (audio streams are connected), the calls drop out. No audio from the remote end is ever heard. It definitely only happens on this particular network. I'm assuming that this is a firewall issue, but have no idea what ports we need to have opened on this firewall to allow the voice calls? Edit: Whilst experiencing this issue, I was

User Call Report API gives incorrect results

笑着哭i 提交于 2019-12-05 07:19:40
问题 I am trying to use the User Call Report API from Sinch's Reporting API (from Voice REST API). Unfortunately, the response give by User Call Report API is incorrect (it indicates no calls when calls did happen). Specifically, I am accessing the URL: https://reportingapi.sinch.com/v1/users/username/aaa/calls/data for username aaa. The response is: {"start":"2016-05-18T00:00:00","duration":0,"success":0,"failed":0} Today is June 17th, 2016. This response is incorrect. Yesterday, June 16th, 2016

Sinch - callDidEstablish is not getting called on Lock screen while answering call from CallKit

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-04 04:46:36
问题 Sinch - callDidEstablish is not getting called on Lock screen while answering call from CallKit. I have integrated CallKit but answering call from Lock screen sinch call delegate method is not getting called to establish call. I also went through iOS Sinch Document it says :- Invoking -[SINCall answer] while being in the background is possible. The call is not immediately answered but the operation is considered pending and the call answered once the app returns to the foreground. Is there