sinch

IOS error about Sinch framework

ぃ、小莉子 提交于 2019-12-13 22:43:10
问题 I want to do call function and I use Sinch.framework, but I had met this error when I add Sinch.framework to my project. How to fix this error. 回答1: It looks like you have not added the required frameworks AudioToolbox.framework AVFoundation.framework Security.framework or added the other linker flags -ObjC -Xlinker -lc++ you can find more info here https://www.sinch.com/docs/voice/ios/ 来源: https://stackoverflow.com/questions/30775805/ios-error-about-sinch-framework

Sinch SDK android Sharing Videos, Audiosm Photos

若如初见. 提交于 2019-12-13 19:25:27
问题 Am using sinch sdk to create a chat application in my app. It is a group chat app without one to one messages. How do I intergrate sharing multimedia data like videos, audio or photos in my app using sinch? 回答1: The sinch SDK is really good at 1on1 messaging, to do broadcast messages one to many is not really what the SDK is designed for. I would look at other solutions like Parse and Layer 回答2: According to Sinch! the feature of sending media messages has not been released yet, therefore it

sinch sending old deleted messages in onMessageSent

浪子不回头ぞ 提交于 2019-12-13 05:52:38
问题 Why is sinch sending old deleted messages in onMessageSent of MessageClientListener? These messages were deleted in my Parse backend. I've deleted data of the app on phone, so sinch should n't have this locally. From where is Sinch bringing in all these messages and what should I do to avoid this? 回答1: hi sinch evangelist here. I am going to try and explain this. Parse and Sinch has nothing to do with each other (we have a tutorial where we show how you can save messages to your own backend

App to web video calling using Sinch

和自甴很熟 提交于 2019-12-13 03:52:12
问题 I am working on a project which is created as an application and as a website. This application includes app to app video calling as well as app to web video calling also. I have successfully implemented app to app calling, but how can i implement app to web calling. My project includes user1 and user2. User1 calls user2 on app. App to app calling is successful,but user2 can be logged in from website also, then in this case i have to accomplish a video call from app to web. Please help me by

Unable to get DICE event for App to Phone call in SINCH

十年热恋 提交于 2019-12-12 05:48:30
问题 I am developing an android application where I have used SINCH SDK for VOIP service. It is working too good as per our requirement. I have only one issue that I am unable to get DICE event on Callback URL (which is set at SINCH dashboard) or Call end event in mobile SDK when I perform app to phone call and recipient declines the call. I am able to get DICE event only if recipient pick ups the call and then disconnect it. Can anyone help? 来源: https://stackoverflow.com/questions/42434323/unable

didReceiveIncomingCall is called although it is a missed call

谁说胖子不能爱 提交于 2019-12-12 04:30:01
问题 When the app is in background and an incoming call has happened and the user didn't pick up. When the user gets back into the app - (void)client:(id<SINCallClient>)client didReceiveIncomingCall:(id<SINCall>)call is being invoked. Steps to reproduce User A caller User B receiver User B has the app in background User B calls user A User B hangs up the call before user A picks up User B opens the app and - (void)client:(id<SINCallClient>)client didReceiveIncomingCall:(id<SINCall>)call gets

Sinch webRTC DevicesNotFoundError on Chrome Mozilla et al

一世执手 提交于 2019-12-12 03:41:35
问题 I am trying to setup up video calling in my webapp using Sinch. The application works well on my Chrome (50.0.2661.102 64 bit) but a friend using windows (same version chrome but 32 bit) gets a NavigatorUserMediaError with a reason : DevicesNotFoundError. I tried using mozilla, vivaldi and IE but non of them works. The error is in the sinch.min.js file and I am using the latest version from their repository : https://cdn.sinch.com/latest/sinch.min.js Can someone please help me fix these

Sinch Verification Swift 3

浪子不回头ぞ 提交于 2019-12-12 03:06:34
问题 I have been converting my code to swift 3. I have an issue with since verification: This is the code I have: verification.initiate { (success:Bool, error:Error?) -> Void in //handle outcome if (success){ print("successfully requested phone verification") //segue to next screen self.performSegue(withIdentifier: "xxx", sender: nil) } else { let alert = UIAlertController(title: "Alert", message: error?.localizedDescription, preferredStyle: .alert) alert.addAction(UIAlertAction(title: "Ok", style

Add clients to conference call in Sinch

纵饮孤独 提交于 2019-12-12 02:21:55
问题 I have implemented the Conference Call using Sinch and it is working perfectly. Now my requirement is I should be able to add clients to the conference call. According to the Sinch docs I can make users to connect to the same conference room only when all the users use the same conference room name. What I am trying to achieve is to have one user create a conference room and add users to that room as he wishes. Can this be achieved , if so how? All answers are appreciated 回答1: Yes you can use

How to set caller id for Sinch App-To-Phone calling?

China☆狼群 提交于 2019-12-11 10:25:45
问题 I have developed an app which does app to phone calling using Sinch framework. Calling works fine but the issue is I see a 4 digit number on receiver's phone but I would like receiver to see the registered number of caller. So I would like to set caller id or something like that for this. I tried to google it but I was not able to find any solution for that. Since app to app calling is having api to set caller id but I'm looking for a solution to set caller id for Sinch app to phone calling.