viber

Need viber webservice or api address [closed]

别说谁变了你拦得住时间么 提交于 2019-12-12 16:22:06
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . Is there any api or webservice to send message via viber through c# .net , and get delivery? I googled and found an api for whats app but not for viber 回答1: There is no Viber API available in C#.Net till now. 来源: https://stackoverflow.com/questions/28611238/need-viber-webservice-or-api-address

How Viber select the image to display from HTML page

我只是一个虾纸丫 提交于 2019-12-09 18:22:38
问题 when I send some URL to someone via Viber the Viber load the URL and displays image representing the HTML page. How to tell the HTML page what image it should be? 回答1: You should use Open Graph protocol. You can simply add this snippet to your page <head> : <meta property="og:type" content="website"> <meta property="og:site_name" content="Название сайта"> <meta property="og:title" content="Заголовок"> <meta property="og:description" content="Описание."> <meta property="og:url" content="http:/

HTML Viber link to specific number

天大地大妈咪最大 提交于 2019-12-09 17:53:55
问题 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 it possible to do this through HTML? What could be other way? 回答1: To open viber chat with a user: <a href="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

How to share an image file to WhatsApp and Viber on Android 7.1.1?

折月煮酒 提交于 2019-12-06 06:42:29
问题 Background Similar to issues I've recently had with sharing/opening APK files (here, here and here) , I now have an issue of sending an image file (in assets, res/raw or even from a URL) to specific apps: WhatsApp and Viber. I need to be able to share an image file to all apps, especially popular ones such as WhatsApp and Viber. The problem Both WhatsApp and Viber have issues when I try to share the image files on Andorid 7.1.1 . On other apps, and on previous versions of Android, it worked

How to open Viber public chat from Android app

佐手、 提交于 2019-12-05 17:59:53
I know how to open a conversation with a number in Viber: How to start Viber call from an Android app [new version]? But how do I open a public chat? Any ideas? Thanks in advance Stanislav Tkach this Kotlin code works fine for me val viberPackageName = "com.viber.voip" val phone= "5757575757" try { activity?.startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("viber://add?number=$phone"))) } catch (ex: ActivityNotFoundException) { try { activity?.startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=$viberPackageName"))) } catch (ex: ActivityNotFoundException) { activity?

share image does not work in viber and facebook

前提是你 提交于 2019-12-04 15:59:52
问题 I use the code below for sharing images but unfortunately it works only for Line , not for Facebook and Viber Code: Intent share = new Intent(android.content.Intent.ACTION_SEND); share.setType("image/png"); share.putExtra(Intent.EXTRA_STREAM, Uri.parse(G.DIR_APP + "/sample_image.png")); startActivity(Intent.createChooser(share, "Share image")); 回答1: Share directly to Facebook and Viber... Intent share = new Intent(android.content.Intent.ACTION_SEND); share.setType("image/png"); share

How to add app connections to an existing contact like WhatsApp and Viber does?

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-04 15:52:36
I want my android app's connection to be added in an existing contact. I am sending my all contacts of Phonebook to server(with Name,Phone Number, and Contact ID) to check which contacts are registered for my app. I will send back to client app the contact IDs which are matched. Now I want to add connection to those contacts in my Phonebook based on those returned IDs. How can I add app connection by editing the contact based on one of returned contact ID? Thanks Try with this code, it will give you desired output public static void addContact(Context context, MyContact contact) {

How to share an image file to WhatsApp and Viber on Android 7.1.1?

不羁的心 提交于 2019-12-04 13:20:12
Background Similar to issues I've recently had with sharing/opening APK files ( here , here and here ) , I now have an issue of sending an image file (in assets, res/raw or even from a URL) to specific apps: WhatsApp and Viber. I need to be able to share an image file to all apps, especially popular ones such as WhatsApp and Viber. The problem Both WhatsApp and Viber have issues when I try to share the image files on Andorid 7.1.1 . On other apps, and on previous versions of Android, it worked fine. They either show a black screen (no image) or close themselves, on all of the test I've tried.

How Viber select the image to display from HTML page

爱⌒轻易说出口 提交于 2019-12-04 08:13:32
when I send some URL to someone via Viber the Viber load the URL and displays image representing the HTML page. How to tell the HTML page what image it should be? You should use Open Graph protocol. You can simply add this snippet to your page <head> : <meta property="og:type" content="website"> <meta property="og:site_name" content="Название сайта"> <meta property="og:title" content="Заголовок"> <meta property="og:description" content="Описание."> <meta property="og:url" content="http://example.com/page.html"> <meta property="og:locale" content="ru_RU"> <meta property="og:image" content="http

Launching Viber app via URL scheme on iOS

匿名 (未验证) 提交于 2019-12-03 03:03:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: 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://tel: viber://chat: I followed this link but it's for Android. 回答1: I sent a mail to the Viber support and they told me that this kind of URL (opening Viber call/chat with a phone number) are no more supported. When typing Viber version is 5.6. Look at their answer: support@viber.com : "Thank you for contacting us. Unfortunately, there isn’t such option in Viber."