I am using Sinch for app to app calls. Integrated and created iOS and Android apps which are working perfectly fine.
Now I am creating a web app to communicate with mobile apps. I am able to make call from mobile app to web app i.e. to Javascript I also successfully achieved web to web call, but I am unable to establish call from web to mobile app.
Following are my findings after debug: Call In Progress is fired Call Ended is fired after couple of seconds Call State is 3 i.e. Progressing Call End Cause is 1 i.e. Denied
I am following this sample and using sdk version 1.4.8
This is my calling code:
call = callClient.callUser("myUsername");
call.addEventListener(callListener);
I get it working.
Put
supportManagedPush:true
while initializing your JS sinch client on your web. If app to app call working then web to app will work fine.Note: This will enable web to call a
android
orIOS
app while they are not running.(UsingFCM wakeup
)