Skip to content Skip to sidebar Skip to footer

Html Viber Link To Specific Number

I need help to implement Viber number in my application. It should connect user directly with Viber chat option and it should add specific number where message need to be send. Is

Solution 1:

To open viber chat with a user:

<ahref="viber://chat/?number=%2BPHONENUMBERWITHCOUNTRYCODE">Viber Chat</a>

*IMPORTANT! the number should be with "%2B" instead of "+".

You can also open Viber contact, so a user will be able to choose call or chat.

EDIT: Looks like contact link stopped working on February 2019. Chat link still works

<ahref="viber://contact?number=%2BPHONENUMBERWITHCOUNTRYCODE">Viber Contact</a>

Solution 2:

You can add number:

<ahref="viber://add?number=12345678">Viber</a>

or you can chat to:

<ahref="viber://chat?number=12345678">Viber</a>

or you can send message to channel:

<ahref="viber://pa?chatURI=[public account URI]&text=[message text]"> some text </a>

Post a Comment for "Html Viber Link To Specific Number"