The Guest to Guest Meeting Facilitator is a service app that allows users to create and manage Webex meetings on behalf of other users. This project is a reference implementation of the Service Apps as G2G Meeting Facilitator Guide.
To get started with this project, you'll need to obtain a service app access token. Follow the steps below to generate the token:
- Go to the Webex Developer Portal and sign in.
- Navigate to the Service Apps as G2G Meeting Facilitator Guide documentation.
- Follow the instructions in the guide to generate a service app access token with the mandatory scopes
guest-meeting:rw
,meeting:schedules_read
,meeting:schedules_write
, and any additional desired scopes.
- Clone the repository:
git clone
- Install the dependencies:
pip install -r requirements.txt
- In the
.env.sample
file, set the environment variableWEBEX_ACCESS_TOKEN
to the service app access token generated in the Getting Started section. - Rename
.env.sample
file to.env
. - Run the app:
flask run
- Open a browser and navigate to
http://localhost:5000/
to access the app. - Create a new meeting by entering the meeting details and clicking the
Create Meeting
button. - Create meeting join links for the meeting by entering a guest display name and clicking the
Create Join Link
button. - Copy the join links and share it with each of the guests.