Skip to content

Simple demo ringcentral chatbot which can tell time/date created with ringcentral-chatbot-framework and ringcentral-chatbot-factory

License

Notifications You must be signed in to change notification settings

zxdong262/ringcentral-date-time-chatbot

Repository files navigation

ringcentral-date-time-chatbot

Simple demo ringcentral chatbot which can tell time/date created with ringcentral-chatbot-framework and ringcentral-chatbot-factory

screen

Table of contents

Prerequisites

  • Python3.6+ and Pip3
  • Create the bot App: Login to developer.ringcentral.com and create an public Server/Bot app with permissions: ReadAccounts, Edit Extensions, WebhookSubscriptions, Glip(or more as you may need)

Quick start

# use virtualenv
pip3 install virtualenv # might need sudo

# init virtual env
virtualenv venv --python=python3

# use env
source ./venv/bin/activate

# install deps
pip install -r requirements.txt

# run ngrok proxy
# since bot need https server,
# so we need a https proxy for ringcentral to visit our local server
./bin/proxy
# will show:
# Forwarding https://xxxxx.ngrok.io -> localhost:8989

# create env file
cp .sample.env .env
# then edit .env, set proper setting,
# and goto your ringcentral app setting page, set OAuth Redirect URI to https://https://xxxxx.ngrok.io/bot-oauth
RINGCENTRAL_BOT_SERVER=https://xxxxx.ngrok.io

## for bots auth required, get them from your ringcentral app page
RINGCENTRAL_BOT_CLIENT_ID=
RINGCENTRAL_BOT_CLIENT_SECRET=

# create custom bot config file
# All bot logic is in config.py, 68 lines only
cp date-time-bot-logic.py config.py

# run local dev server
./bin/start

Test bot

Building and Deploying to AWS Lambda

deploy-to-aws-lambda

License

MIT

About

Simple demo ringcentral chatbot which can tell time/date created with ringcentral-chatbot-framework and ringcentral-chatbot-factory

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published