Giter Club home page Giter Club logo

zoom-teams-chatbot's Introduction

Unsplash Chatbot for Zoom

This is a sample Chatbot app using Node.js, PostgreSQL, and the Unsplash API, deployed to Heroku.

Unsplash Chatbot for Zoom

To create this Chatbot from scratch, click here to follow the step by step tutorial on our docs.

To run the completed Chatbot code locally or deploy it to a live server, continue reading below.

Local/Development Setup

To run the completed Chatbot locally, follow these steps,

  1. In terminal:

    $ git clone https://github.com/zoom/unsplash-chatbot.git

    $ cd unsplash-chatbot

    $ npm install

    $ touch .env

    Download PostgreSQL here or if on a Mac install using Homebrew,

    $ brew install postgresql

    Once PostgreSQL is installed, follow these commands if you haven’t set it up before,

    $ brew services start postgresql

    $ psql postgres

    You should be inside the PostgreSQL terminal now and see a postgres=# preifx. Now let’s create a database user called "me" with a password of "password"

    postgres=# CREATE ROLE me WITH LOGIN PASSWORD 'password';

    postgres=# ALTER ROLE me CREATEDB;

    postgres=# \q

    You have just added yourself as a user who has the create database permission. Now type this to connect to postgres as your user,

    $ psql -d postgres -U me

    Now that PostgreSQL is configured, let’s create a database, connect to it, and create a table to store our access_token. We will also seed our database with a blank access_token and an expires_on date of 1. That way, the first time we call our Zoom Chatbot it will think the access_token is expired. Then it will generate a new one for us, and save it. Run these postgres commands,

    postgres=> CREATE DATABASE zoom_chatbot;

    postgres=> \c zoom_chatbot

    zoom_chatbot=> CREATE TABLE chatbot_token (token TEXT, expires_on NUMERIC);

    zoom_chatbot=> INSERT INTO chatbot_token (token, expires_on) VALUES ('', '1');

  2. Add this code to your .env file, replacing the Required text with your respective Development Zoom Chatbot API credentials and your Unsplash Access Key.

    If you followed my instructions on setting up PostgreSQL, don't change the DATABASE_URL. If you have setup PostgreSQL before or set it up differently than me reference this postgres://DBUSERNAME:PASSWORD@SERVER:PORT/DATABASE.

    unsplash_access_key=Required
    zoom_client_id=Required
    zoom_client_secret=Required
    zoom_bot_jid=Required
    zoom_verification_token=Required
    DATABASE_URL=postgres://me:password@localhost:5432/zoom_chatbot
    
  3. In terminal:

    $ npm run start or $ nodemon (for live reload / file change detection)

    $ ngrok http 4000 (ngrok turns localhost into live server so slash commands and user actions can be sent to your app)

  4. Open your ngrok https url in a browser, you should see this,

    Welcome to the Unsplash Chatbot for Zoom!

  5. On your App Marketplace Dashboard, add your ngrok https url to your Whitelist URLs (App Credentials Page), Development Redirect URL for OAuth (App Credentials Page), and Development Bot Endpoint URL (Features Page). Make sure to match the path after your ngrok https url with the express routes in index.js.

    In order to click the Save button on the Features page when adding a Slash Command and Development Bot Endpoint URL, you have to provide a Production Bot Endpoint URL. Feel free to use https://zoom.us as a placeholder.

    After that, your app is ready to be installed!

  6. On your App Marketplace Dashboard, go to the Local Test page and click Install. After you click the Authorize button, you should be taken to your redirect url and see this,

    Thanks for installing the Unsplash Chatbot for Zoom!

  7. Now that your Chatbot is installed on your Zoom account, go to a Zoom Chat channel and type,

    /unsplash mountains

Production Setup

To run the completed Chatbot on a live server, follow these steps,

  1. Click the Deploy to Heroku Button,

    Deploy

  2. Fill in your Production Zoom Chatbot API credentials and your Unsplash Access Key in the Config Vars section.

  3. Click Deploy app.

  4. On your App Marketplace Dashboard, add your Heroku url to your Whitelist URLs (App Credentials Page), Production Redirect URL for OAuth (App Credentials Page), and Production Bot Endpoint URL (Features Page). Make sure to match the path after your Heroku url with the express routes in index.js.

  5. On your App Marketplace Dashboard, go to the Submit page and click Add to Zoom. After you click the Authorize button, you should be taken to your redirect url and see this,

    Thanks for installing the Unsplash Chatbot for Zoom!

  6. Now that your Chatbot is installed on your Zoom account, go to a Zoom Chat channel and type,

    /unsplash mountains

Need Support?

The first place to look for help is on our Developer Forum, where Zoom Marketplace Developers can ask questions for public answers.

If you can’t find the answer in the Developer Forum or your request requires sensitive information to be relayed, please email us at [email protected].

zoom-teams-chatbot's People

Contributors

tommygaessler avatar kbienert2 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.