npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

businessmessages-custom

v1.0.3

Published

Client library for Google's Business Messages API

Downloads

30

Readme

Google's Business Messages: Node.js Client

Business Messages is a mobile conversational channel that combines entry points on Google Maps, Search, and brand websites to create rich, asynchronous messaging experiences.

This document contains an API reference, samples, and other resources useful to developing Node.js applications. For additional help developing Business Messages applications, in Node.js and other languages, see our Business Messages quickstart guide.

Documentation

The documentation for the Business Messages API can be found here.

Quickstart

Before you begin

  1. Register with Business Messages.
  2. Once registered, follow the instructions to enable the APIs for your project.

Installing the client library

npm install businessmessages

Using the client library

// Get the Google Auth library
const {GoogleAuth} = require('google-auth-library');

// Get the BusinessMessages client library
const businessmessages = require('businessmessages');

// Set the scope for API authentication
const auth = new GoogleAuth({
  scopes: 'https://www.googleapis.com/auth/businessmessages',
});

// Initialize the Business Messages client library
const bmApi =
  new businessmessages.businessmessages_v1.Businessmessages({});

// Global used for creating an authentication token for calling the API
let authClient = false;

/**
 * Initializes the Google credentials for calling the
 * Business Messages API. This uses the default application credentials.
 */
async function initCredentials() {
  authClient = await auth.getClient();

  // Initialize auth token
  authClient.refreshAccessToken();
  await authClient.getAccessToken();
}

/**
 * Posts a message of "Hello, World!" to the Business Messages API.
 *
 * @param {string} conversationId The unique id for this user and agent.
 */
async function sendResponse(conversationId) {
  if (!authClient) {
    await initCredentials();
  }

  // Create the payload for sending a message of "Hello, World!"
  let apiParams = {
    auth: authClient,
    parent: 'conversations/' + conversationId,
    resource: {
      messageId: uuidv4(),
      representative: {
        representativeType: 'BOT',
      },
      text: 'Hello, World!',
    },
  };

  // Call the message create function using the
  // Business Messages client library
  bmApi.conversations.messages.create(apiParams,
    {auth: authClient}, (err, response) => {
    console.log(err);
    console.log(response);
  });
}

sendResponse('valid-conversation-id');

Sample usage

Samples below assume a similar library initialization as shown in the Using the client library section.

Sending a text message

// Create the payload for sending a message of "Hello, World!"
let apiParams = {
  auth: authClient,
  parent: 'conversations/' + conversationId,
  resource: {
    messageId: uuidv4(),
    representative: {
      representativeType: 'BOT',
    },
    text: 'Hello, World!',
  },
};

// Call the message create function using the
// Business Messages client library
bmApi.conversations.messages.create(apiParams,
  {auth: authClient}, (err, response) => {
  console.log(err);
  console.log(response);
});

Sending a text message with suggested replies and actions

// Create the payload for sending a message of "Hello, World!" along with
// a suggested reply and two suggested actions
let apiParams = {
  auth: authClient,
  parent: 'conversations/' + conversationId,
  resource: {
    messageId: uuidv4(),
    representative: {
      representativeType: 'BOT',
    },
    text: 'Hello, World!',
    suggestions: [
      {
        reply: {
          text: 'Sample Chip',
          postbackData: 'sample_chip',
        },
      },
      {
        action: {
          text: 'URL Action',
          postbackData: 'url_action',
          openUrlAction: {
            url: 'https://www.google.com',
          },
        },
      },
      {
        action: {
          text: 'Dial Action',
          postbackData: 'dial_action',
          dialAction: {
            phoneNumber: '+12223334444',
          },
        },
      },
    ],
  },
};

// Call the message create function using the
// Business Messages client library
bmApi.conversations.messages.create(apiParams,
  {auth: authClient}, (err, response) => {
  console.log(err);
  console.log(response);
});

Sending a rich card

// Create the payload for sending a rich card
let apiParams = {
  auth: authClient,
  parent: 'conversations/' + conversationId,
  resource: {
    messageId: uuidv4(),
    representative: {
      representativeType: 'BOT',
    },
    richCard: {
      standaloneCard: {
        cardContent: {
          title: 'Business Messages!!!',
          description: 'This is an example rich card',
          media: {
            height: 'MEDIUM',
            contentInfo: {
              fileUrl: 'https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png',
              forceRefresh: false,
            },
          },
          suggestions: [
            {
              reply: {
                text: 'Sample Chip',
                postbackData: 'sample_chip',
              },
            },
          ],
        },
      },
    }
  },
};

// Call the message create function using the
// Business Messages client library
bmApi.conversations.messages.create(apiParams,
  {auth: authClient}, (err, response) => {
  console.log(err);
  console.log(response);
});

Sending a carousel

// Create the payload for sending a carousel
let apiParams = {
  auth: authClient,
  parent: 'conversations/' + conversationId,
  resource: {
    messageId: uuidv4(),
    representative: {
      representativeType: 'BOT',
    },
    richCard: {
      carouselCard: {
        cardWidth: 'MEDIUM',
        cardContents: [
          {
            title: 'Card #1',
            description: 'The description for card #1',
            suggestions: [
              {
                reply: {
                  text: 'Card #1',
                  postbackData: 'card_1'
                }
              }
            ],
            media: {
              height: 'MEDIUM',
              contentInfo: {
                fileUrl: 'https://storage.googleapis.com/kitchen-sink-sample-images/cute-dog.jpg',
                forceRefresh: 'false',
              }
            }
          },
          {
            title: 'Card #2',
            description: 'The description for card #2',
            suggestions: [
              {
                reply: {
                  text: 'Card #2',
                  postbackData: 'card_2'
                }
              }
            ],
            media: {
              height: 'MEDIUM',
              contentInfo: {
                fileUrl: 'https://storage.googleapis.com/kitchen-sink-sample-images/elephant.jpg',
                forceRefresh: 'false',
              }
            }
          }
        ]
      }
    }
  },
};

// Call the message create function using the
// Business Messages client library
bmApi.conversations.messages.create(apiParams,
  {auth: authClient}, (err, response) => {
  console.log(err);
  console.log(response);
});

Samples

See the code examples to see example usage for most API features. The samples' README.md has instructions for running the samples.

| Sample | Source Code | | --------------------------- | --------------------------------- | | Echo Bot | source code | | Book Appointment Bot | source code |

Versioning

This library follows Semantic Versioning.

This library is considered to be General Availability (GA). This means it is stable; the code surface will not change in backwards-incompatible ways unless absolutely necessary (e.g. because of critical security issues) or with an extensive deprecation period. Issues and requests against GA libraries are addressed with the highest priority.

Contributing

Contributions welcome! See the Contributing Guide.

License

Apache Version 2.0

See LICENSE