Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

Nikaladze

macrumors newbie
Original poster
Dec 25, 2013
4
0
Hi, all!

I just need to know, is there any ways to integrate Skype into the app right now. I need only a chat functionality. No video or audio calls, no file transfer, only chat.

Official site has some "integration" tutorial:
Code:
- (IBAction)skypeMe:(id)sender {
  BOOL installed = [[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"skype:"]];
  if(installed) {
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"skype:echo123?call"]];
  } else{
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://itunes.com/apps/skype/skype"]];
  }
}
,but it's about nothing, it's not an integration

Regards

Niko
 
So you could use a bog standard role your own jabber client or do you need access to skypes user base?
 
You would have to check if Skype provides a SDK for iOS, otherwise I don't think it would be possible
 
It's too bad

That's the point, I need an access to skype contacts and messages. I thought maybe someone done something similar. There is another unofficial scheme with using of Jabber transport protocol karaka. But job was stopped on this project.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.