Reputation: 1463
I'm using Sinch API for implementing Conference Call in my Android App. I need to create Conference Room, then add one SinchClient and one mobile/landline to that conference.
I searched a lot and some answered to use ConferenceCallout restapi, but I need to do it in pure android. What is a good way to implement it?
Thanks in Advance.
Upvotes: 1
Views: 456
Reputation: 2703
to add a participant to the call you need to do a rest call, the rest client is not part of the android SDK since you usually dont have the secret in the app. I would connect the user to the conference in the ICE event and then make a conferenceCAllout at the same time in that rest event
https://www.sinch.com/docs/voice/rest#ICE
https://www.sinch.com/docs/voice/rest#Callouts
We support both signed request and basic auth
Upvotes: 1