Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We are developing an iPhone app and planning to integrate Whatsapp.

Is there a way to enable click to call / message from the iPhone app? Skype allows this by following:

<a href="skype:skypehandle?call"> Skype </a>

Is there an equivalent for Whatsapp ?

share|improve this question

3 Answers

currently Whatsapp doesn't have a registered URL scheme.

You can check if you favourite apps support them by inspecting the contents of the apps info.plist.

I'm sure there are windows equivalents but I use a mac, so have a free app called iPhone Explorer (now renamed to iExplorer) installed which mounts the phone as a drive and allows you to view app contents via a tree structure. No jailbreak required. The info.plist is in the chosen apps appname.app folder. copy this to your desktop and open the file. Look for the 'URL types' key and expand. This is the URL that when :// is added will open in safari or with the UIApplication openURL method.

update - November 2012 - latest version now adds URL scheme.
whatsapp://

don't know if it has any 'actions' associated with it though.

share|improve this answer
+1 for the excellent tip about checking app's info.plist – JOM Jan 8 at 7:44

There are a few sites that list numerous iPhone app URL Schemes. http://handleopenurl.com/scheme?page=27 is the largest one that I know of. It doesn't seem to contain anything for WhatsApp.

http://wiki.akosma.com/IPhone_URL_Schemes is another list, but also doesn't include WhatsApp. It's up to the developer of the app to create and publish their own URL Schemes, and it doesn't look like WhatsApp have done so yet.

share|improve this answer
NSURL *whatsAppURL = [NSURL URLWithString:@"Whatsapp://location?id=1"];

 if ([[UIApplication sharedApplication] canOpenURL:whatsAppURL]) {
        [[UIApplication sharedApplication] openURL:whatsAppURL]]];
 }
share|improve this answer
hello tell me ehn its works suessfully and what is location?id ??? .and how to use location id in iphone app .thanks in advance :) – Bajaj May 2 at 9:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.