Igor
Igor

Reputation: 1258

Call using Skype.app via openURL:

Does anybody know if it is possible open Skype.app to call phone via

- (BOOL)openURL:(NSURL *)url

UIApplication message?

If it possible, what url a need pass to this message?

Thanks

Upvotes: 5

Views: 4316

Answers (3)

Allen Smith
Allen Smith

Reputation: 388

Just to provide some direction here we provide URI support on iOS and we have created an example for you, see: https://dev.skype.com/skype-uri/skype-uri-tutorial-ios

Upvotes: 0

pgb
pgb

Reputation: 25001

By looking at Skype's Info.plist file (you can open it from the ipa file iTunes has downloaded), you can tell it has no URL registered, so you won't be able to call it from your application.

You should look for a key called CFBundleURLTypes (you can look at Twiterrific's for an app that has one defined).

Update: Apparently, starting with Skype 2.1, there is a URL registered. See other answers on this question.

Upvotes: 4

F'x
F'x

Reputation: 12298

Just for reference, this seems to have changed when multitasking support was added: starting at least with Skype 2.1.0, this URI works fine: skype:+33123456789?call

Upvotes: 6

Related Questions