I\'m making an iOS app which can open Viber app and automatically call a person or go to chat window with the person. Is there any url scheme for Viber to do that such as:
viber://contact?number= mobile number
It will open the particular user contact. Give user to select chat and call.
it worked for me!
This works: "viber://chats" or "viber://calls"
You can check by using
[[UIApplication sharedApplication] canOpenURL:@"viber://url"];
if Viber app is installed on device, and viber handle this url scheme it will return true otherwise false.