PhoneGap and WhatsApp

2020-06-10 15:55发布

I hope you'll can help me to find an issue to my problem.

I'm developping an application who should use WhatsApp. This application is using HTML5, CSS3 and Javascript. I am using this link to send an message with WhatsApp :

<a href="whatsapp://send?text=Test 1">

This link work perfectly when you use directly a browser but when I use PhoneGap I have a error like this :

net::ERR_UNKNOWN_URL_SCHEME

I have tested some issues but doesn't work. I have also checked the Documentation but nothing...

Can you help me please ?

Thanks

EDIT

Here is the solution to my problem (thanks to @jcesarmobile):

<access origin="whatsapp:*" launch-external="yes" />

Many thanks :)

3条回答
够拽才男人
2楼-- · 2020-06-10 16:00

First and more important, add this line to your config.xml

<allow-intent href="whatsapp:*" />

after use the code:

<a href="whatsapp://send?text=Hello%20World!">Hello, world!</a>
查看更多
Ridiculous、
3楼-- · 2020-06-10 16:03

Edit for newer cordova versions:

Use <allow-intent href="whatsapp:*" />

Old answer:

Add this line to your config.xml

<access origin="whatsapp:*" launch-external="yes" />

Or use the social sharing plugin

https://github.com/EddyVerbruggen/SocialSharing-PhoneGap-Plugin

<button onclick="window.plugins.socialsharing.shareViaWhatsApp('Message via WhatsApp', null /* img */, null /* url */, function() {console.log('share ok')}, function(errormsg){alert(errormsg)})">msg via WhatsApp (with errcallback)</button>
查看更多
一夜七次
4楼-- · 2020-06-10 16:08
window.location.href = 'whatsapp://send?text=hello world';

this worked for phonegap IOS

window.open("'whatsapp://send?text=hello world'", "_system");

for android.

查看更多
登录 后发表回答