Reputation: 77
I need a deep link that will redirect to specific number on Viber. I have for now this, but it's working as it should on computer, not phones.
<a id="viber" href="viber://pa?chatURI=<+38163600583>">Viber</a>
I saw this https://developers.viber.com/docs/tools/deep-links/ and edited it as the documentation states, but it's still not working on phones. I tried without and with +
and without it (the +
in front of number) or without <>
, but still not working.
Any thoughts?
Upvotes: 4
Views: 9520
Reputation: 300
Suppose your country code is +84
, and your phone number is 1234567899
.
For PC
viber://chat/?number=+841234567899&draft=$hello
For Mobile (Android & IOS)
Replace the +
to %2B
viber://chat/?number=%2B841234567899&draft=$hello
Upvotes: 2