Skip to main content
Version: 1.5

ViberClient

Usage

Get the ViberClient instance using the getClient function:

const { getClient } = require('bottender');

const client = getClient('viber');

// `client` is a `ViberClient` instance
const accountInfo = await context.client.getAccountInfo();

Or, get the ViberClient instance from the context:

async function MyAction(context) {
if (context.platform === 'viber') {
// `context.client` is a `ViberClient` instance
const accountInfo = await context.client.getAccountInfo();
}
}

Error Handling

ViberClient uses axios as HTTP client. We use axios-error package to wrap API error instances for better formatting error messages. Calling console.log with the error instance returns the formatted message. If you'd like to get the axios request, response, or config, you can still get them via those keys on the error instance.

client.setWebhook(url).catch((error) => {
console.log(error); // the formatted error message
console.log(error.stack); // stack trace of the error
console.log(error.config); // axios request config
console.log(error.request); // axios HTTP request
console.log(error.response); // axios HTTP response
});

Methods

All methods return a Promise.


Webhook API

setWebhook(url [, eventTypes])

Setting a Webhook.

ParamTypeDescription
urlStringHTTPS Account webhook URL to receive callbacks & messages from users.
eventTypesArray<String>Indicates the types of Viber events that the account owner would like to be notified about. Possible values: delivered, seen, failed, subscribed, unsubscribed and conversation_started.

Example:

client.setWebhook('https://4a16faff.ngrok.io/');

You can filter event types using optional parameter:

client.setWebhook('https://4a16faff.ngrok.io/', [
'delivered',
'seen',
'conversation_started',
]);

removeWebhook

Removing your webhook.

Example:

client.removeWebhook();

Send API

sendMessage(receiver, message) - Official Docs

Sending a message to a user.

ParamTypeDescription
receiverStringUnique Viber user id.
messageObjectMessage and options to be sent.

Example:

client.sendMessage(USER_ID, {
type: 'text',
text: 'Hello',
});

Note: Maximum total JSON size of the request is 30kb.


sendText(receiver, text [, options]) - Official Docs

Sending a text message to a user.

ParamTypeDescription
receiverStringUnique Viber user id.
textStringThe text of the message.
optionsObjectOther optional parameters.

Example:

client.sendText(USER_ID, 'Hello');

sendPicture(receiver, picture [, options]) - Official Docs

Sending a picture message to a user.

ParamTypeDescription
receiverStringUnique Viber user id.
pictureObject
picture.textStringDescription of the photo. Can be an empty string if irrelevant. Max 120 characters.
picture.mediaStringURL of the image (JPEG). Max size 1 MB. Only JPEG format is supported. Other image formats as well as animated GIFs can be sent as URL messages or file messages.
picture.thumbnailStringURL of a reduced size image (JPEG). Max size 100 kb. Recommended: 400x400. Only JPEG format is supported.
optionsObjectOther optional parameters.

Example:

client.sendPicture(USER_ID, {
text: 'Photo description',
media: 'http://www.images.com/img.jpg',
thumbnail: 'http://www.images.com/thumb.jpg',
});

sendVideo(receiver, video [, options]) - Official Docs

Sending a video message to a user.

ParamTypeDescription
receiverStringUnique Viber user id.
videoObject
video.mediaStringURL of the video (MP4, H264). Max size 50 MB. Only MP4 and H264 are supported.
video.sizeNumberSize of the video in bytes.
video.durationNumberVideo duration in seconds; will be displayed to the receiver. Max 180 seconds.
video.thumbnailStringURL of a reduced size image (JPEG). Max size 100 kb. Recommended: 400x400. Only JPEG format is supported.
optionsObjectOther optional parameters.

Example:

client.sendVideo(USER_ID, {
media: 'http://www.images.com/video.mp4',
size: 10000,
thumbnail: 'http://www.images.com/thumb.jpg',
duration: 10,
});

sendFile(receiver, file [, options]) - Official Docs

Sending a file message to a user.

ParamTypeDescription
receiverStringUnique Viber user id.
fileObject
file.mediaStringURL of the file. Max size 50 MB. See forbidden file formats for unsupported file types.
file.sizeNumberSize of the file in bytes.
file.fileNameStringName of the file. File name should include extension. Max 256 characters (including file extension).
optionsObjectOther optional parameters.

Example:

client.sendFile(USER_ID, {
media: 'http://www.images.com/file.doc',
size: 10000,
fileName: 'name_of_file.doc',
});

sendContact(receiver, contact [, options]) - Official Docs

Sending a contact message to a user.

ParamTypeDescription
receiverStringUnique Viber user id.
contactObject
contact.nameStringName of the contact. Max 28 characters.
contact.phoneNumberStringPhone number of the contact. Max 18 characters.
optionsObjectOther optional parameters.

Example:

client.sendContact(USER_ID, {
name: 'Itamar',
phoneNumber: '+972511123123',
});

sendLocation(receiver, location [, options]) - Official Docs

Sending a location message to a user.

ParamTypeDescription
receiverStringUnique Viber user id.
locationObject
location.latStringLatitude (±90°) within valid ranges.
location.lonStringLongitude (±180°) within valid ranges.
optionsObjectOther optional parameters.

Example:

client.sendLocation(USER_ID, {
lat: '37.7898',
lon: '-122.3942',
});

sendURL(receiver, url [, options]) - Official Docs

Sending an URL message to a user.

ParamTypeDescription
receiverStringUnique Viber user id.
urlStringURL. Max 2,000 characters.
optionsObjectOther optional parameters.

Example:

client.sendURL(USER_ID, 'http://developers.viber.com');

sendSticker(receiver, stickerId [, options]) - Official Docs

Sending a sticker message to a user.

ParamTypeDescription
receiverStringUnique Viber user id.
stickerIdNumberUnique Viber sticker ID. For examples visit the sticker IDs page.
optionsObjectOther optional parameters.

Example:

client.sendSticker(USER_ID, 46105);

sendCarouselContent(receiver, richMedia [, options]) - Official Docs

Sending a carousel content message to a user.

ParamTypeDescription
receiverStringUnique Viber user id.
richMedia.ButtonsGroupColumnsNumberNumber of columns per carousel content block. Default 6 columns. Possible values: 1 - 6.
richMedia.ButtonsGroupRowsNumberNumber of rows per carousel content block. Default 7 rows. Possible values: 1 - 7.
richMedia.ButtonsArray<Object>Array of buttons. Max of 6 ButtonsGroupColumns ButtonsGroupRows.
optionsObjectOther optional parameters.

Example:

client.sendCarouselContent(USER_ID, {
type: 'rich_media',
buttonsGroupColumns: 6,
buttonsGroupRows: 7,
bgColor: '#FFFFFF',
buttons: [
{
columns: 6,
rows: 3,
actionType: 'open-url',
actionBody: 'https://www.google.com',
image: 'http://html-test:8080/myweb/guy/assets/imageRMsmall2.png',
},
{
columns: 6,
rows: 2,
text: '<font color=#323232><b>Headphones with Microphone, On-ear Wired earphones</b></font><font color=#777777><br/>Sound Intone </font><font color=#6fc133>$17.99</font>',
actionType: 'open-url',
actionBody: 'https://www.google.com',
textSize: 'medium',
textVAlign: 'middle',
textHAlign: 'left',
},
{
columns: 6,
rows: 1,
actionType: 'reply',
actionBody: 'https://www.google.com',
text: '<font color=#ffffff>Buy</font>',
textSize: 'large',
textVAlign: 'middle',
textHAlign: 'middle',
image: 'https://s14.postimg.org/4mmt4rw1t/Button.png',
},
{
columns: 6,
rows: 1,
actionType: 'reply',
actionBody: 'https://www.google.com',
text: '<font color=#8367db>MORE DETAILS</font>',
textSize: 'small',
textVAlign: 'middle',
textHAlign: 'middle',
},
{
columns: 6,
rows: 3,
actionType: 'open-url',
actionBody: 'https://www.google.com',
image: 'https://s16.postimg.org/wi8jx20wl/image_RMsmall2.png',
},
{
columns: 6,
rows: 2,
text: "<font color=#323232><b>Hanes Men's Humor Graphic T-Shirt</b></font><font color=#777777><br/>Hanes</font><font color=#6fc133>$10.99</font>",
actionType: 'open-url',
actionBody: 'https://www.google.com',
textSize: 'medium',
textVAlign: 'middle',
textHAlign: 'left',
},
{
columns: 6,
rows: 1,
actionType: 'reply',
actionBody: 'https://www.google.com',
text: '<font color=#ffffff>Buy</font>',
textSize: 'large',
textVAlign: 'middle',
textHAlign: 'middle',
image: 'https://s14.postimg.org/4mmt4rw1t/Button.png',
},
{
columns: 6,
rows: 1,
actionType: 'reply',
actionBody: 'https://www.google.com',
text: '<font color=#8367db>MORE DETAILS</font>',
textSize: 'small',
textVAlign: 'middle',
textHAlign: 'middle',
},
],
});

Keyboards - Official Docs

The Viber API allows sending a custom keyboard using the send message API, to supply the user with a set of predefined replies or actions. Keyboards can be attached to any message type and be sent and displayed together. To attach a keyboard to a message simply add the keyboard’s parameters to the options:

client.sendText(USER_ID, 'Hello', {
keyboard: {
defaultHeight: true,
bgColor: '#FFFFFF',
buttons: [
{
columns: 6,
rows: 1,
bgColor: '#2db9b9',
bgMediaType: 'gif',
bgMedia: 'http://www.url.by/test.gif',
bgLoop: true,
actionType: 'open-url',
actionBody: 'www.tut.by',
image: 'www.tut.by/img.jpg',
text: 'Key text',
textVAlign: 'middle',
textHAlign: 'center',
textOpacity: 60,
textSize: 'regular',
},
],
},
});

Which in turn will look like this:


Broadcast API - Official Docs

Those API methods use the same parameters as the send methods with a few variations described below. You should specify a list of receivers instead of a single receiver.

  • broadcastMessage(broadcastList, message)
  • broadcastText(broadcastList, text [, options])
  • broadcastPicture(broadcastList, picture [, options])
  • broadcastVideo(broadcastList, video [, options])
  • broadcastFile(broadcastList, file [, options])
  • broadcastContact(broadcastList, contact [, options])
  • broadcastLocation(broadcastList, location [, options])
  • broadcastURL(broadcastList, url [, options])
  • broadcastSticker(broadcastList, stickerId [, options])
  • broadcastCarouselContent(broadcastList, richMedia [, options])
ParamTypeDescription
broadcastListArray<String>This mandatory parameter defines the recipients for the message. Every user must be subscribed and have a valid user id. The maximum list length is 300 receivers.

Example:

client
.broadcastText(
[
'pttm25kSGUo1919sBORWyA==',
'2yBSIsbzs7sSrh4oLm2hdQ==',
'EGAZ3SZRi6zW1D0uNYhQHg==',
'kBQYX9LrGyF5mm8JTxdmpw==',
],
'a broadcast to everybody'
)
.then((result) => {
console.log(result);
// {
// messageToken: 40808912438712,
// status: 0,
// statusMessage: 'ok',
// failedList: [
// {
// receiver: 'pttm25kSGUo1919sBORWyA==',
// status: 6,
// statusMessage: 'Not subscribed',
// },
// {
// receiver: 'EGAZ3SZRi6zW1D0uNYhQHg==',
// status: 5,
// statusMessage: 'Not found',
// },
// ],
// }
});

Get Account Info

getAccountInfo() - Official Docs

It will fetch the account’s details as registered in Viber.

Example:

client.getAccountInfo().then((info) => {
console.log(info);
// {
// status: 0,
// statusMessage: 'ok',
// id: 'pa:75346594275468546724',
// name: 'account name',
// uri: 'accountUri',
// icon: 'http://example.com',
// background: 'http://example.com',
// category: 'category',
// subcategory: 'sub category',
// location: {
// lon: 0.1,
// lat: 0.2,
// },
// country: 'UK',
// webhook: 'https://my.site.com',
// eventTypes: ['delivered', 'seen'],
// subscribersCount: 35,
// members: [
// {
// id: '01234567890A=',
// name: 'my name',
// avatar: 'http://example.com',
// role: 'admin',
// },
// ],
// }
});

Get User Details

getUserDetails(id) - Official Docs

It will fetch the details of a specific Viber user based on his unique user ID.

ParamTypeDescription
idStringUnique Viber user id.

Example:

client.getUserDetails('01234567890A=').then((user) => {
console.log(user);
// {
// id: '01234567890A=',
// name: 'John McClane',
// avatar: 'http://avatar.example.com',
// country: 'UK',
// language: 'en',
// primaryDeviceOs: 'android 7.1',
// apiVersion: 1,
// viberVersion: '6.5.0',
// mcc: 1,
// mnc: 1,
// deviceType: 'iPhone9,4',
// };
});

Get Online

getOnlineStatus(ids) - Official Docs

It will fetch the online status of a given subscribed account members.

ParamTypeDescription
idArray<String>Array of unique Viber user id. 100 ids per request.

Example:

client
.getOnlineStatus(['01234567890=', '01234567891=', '01234567893='])
.then((status) => {
console.log(status);
// [
// {
// id: '01234567890=',
// onlineStatus: 0,
// onlineStatusMessage: 'online',
// },
// {
// id: '01234567891=',
// onlineStatus: 1,
// onlineStatusMessage: 'offline',
// lastOnline: 1457764197627,
// },
// {
// id: '01234567893=',
// onlineStatus: 3,
// onlineStatusMessage: 'tryLater',
// },
// ];
});

Debug Tips

Log Requests Details

To enable default request debugger, use following DEBUG env variable:

DEBUG=messaging-api-viber

Test

Send Requests to Your Dummy Server

To avoid sending requests to the real Viber server, provide the origin option in your bottender.js.config file:

module.exports = {
channels: {
viber: {
enabled: true,
path: '/webhooks/viber',
accessToken: process.env.VIBER_ACCESS_TOKEN,
sender: {
name: 'Sender Name',
},
origin:
process.env.NODE_ENV === 'test'
? 'https://mydummytestserver.com'
: undefined,
},
},
};

Warning: Don't do this on the production server.