Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Skype Video Call URI

Tags:

ios

skype

I am working on a simple app that initiates Skype calls.

It successfully initiates Skype audio call using apple's URI scheme

[NSURL URLWithString:@"skype:skype_id?call"]).

But when I try to make a video call using

[NSURL URLWithString:@"skype:skype_id?call&video=true"] 

it still initiates audio call and launches Skype but nothing happens after that (no audio call or video call is made). I have seen some posts where people mentioned that they used similar URI for making video calls for Skype in iOS that worked fine before but now it doesn't work.

I should mention that Android version of the app our team is working on have no such issue. It successfully starts making video call using same URI.

Is this a problem of latest version of skype developed for iOS?

like image 582
samin.yasar Avatar asked Nov 13 '22 01:11

samin.yasar


1 Answers

this seems to be totally bust in skype for iOS. even skype://username?call comes up with a fairly unintuitive modal saying "Placing call with..." which does NOTHING unless you click "Voice Call" All works fine in other systmes / browsers (windows, mac osx, android), though https is bust in chrome. which is just dandy.

maybe https://stackoverflow.com/users/1383154/allen-smith or someone from skypes side can comment??

according to http://handleopenurl.com/scheme/skype you can use skype://username?chat in an html link. Now that sort of works - as in it opens skype, but still doesnt initiate the call.

like image 136
steve Avatar answered Nov 15 '22 05:11

steve