search
HomeBackend DevelopmentPython TutorialHow to create a meeting using Zoom API in Python?

如何使用Python中的Zoom API创建会议?

Zoom is a video conferencing platform that has become increasingly popular for remote meetings and webinars. Zoom provides an API that allows developers to programmatically interact with Zoom's features and functionality, including creating and managing meetings . In this context, Python provides a simple and efficient way to create meetings through Zoom's API.

By using Python, you can automate the process of creating Zoom meetings and integrate them with other workflows or applications. In this guide, we’ll explore how to create a meeting using the Zoom API in Python using the requests library and the Zoom API’s authentication mechanism.

This guide explains how to create a Zoom meeting using Python and the Zoom API. To use the Zoom API, you must follow these steps to create it −

  • Go to https://marketplace.zoom.us/ and either sign up or sign in to your Zoom account.

  • Click on the "Develop" tab and select "Build Application".

  • Agree to Zoom’s API License and Terms of Use.

  • Choose "JWT" ​​as the app type because it is easy to use.

  • Enter the name of your app and click "Create".

  • Fill in the required information, such as your company name, developer name, and email address. For Company Name, you can enter your name and click "Continue."

  • Go to the "App Credentials" tab, copy your API key and API secret, and save them.

Before we can move ahead with the code, we need to install the following packages −

  • JWT JWT (JSON Web Token) is a compact and secure way to represent data to be transmitted between two parties. statement.

  • Requests The requests package in Python is used to make HTTP requests to the Web API.

  • JSON The json package in Python is used for encoding and Decode JSON data.

We can install these packages through the commands shown below.

pip3 install jwt requests json 

Create a meeting using Zoom API

Now let's focus on the code. Consider the code shown below.

Example

import jwt
import requests
import json
from time import time

# Replace with your own API key and secret
API_KEY = 'Your API key'
API_SECRET = 'Your API secret'

# Create a function to generate a token using the PyJWT library
def generate_token():
   
   # Create a payload of the token containing API key and expiration time
   token_payload = {'iss': API_KEY, 'exp': time() + 5000}

   # Secret used to generate token signature
   secret_key = API_SECRET

   # Specify the hashing algorithm
   algorithm = 'HS256'

   # Encode the token
   token = jwt.encode(token_payload, secret_key, algorithm=algorithm)
   return token.decode('utf-8')
   
# Create JSON data for the Zoom meeting details
meeting_details = {
   "topic": "The title of your Zoom meeting",
   "type": 2,
   "start_time": "2019-06-14T10:21:57",
   "duration": "45",
   "timezone": "Europe/Madrid",
   "agenda": "test",
   "recurrence": {
      "type": 1,
      "repeat_interval": 1 
   },
   "settings": {
      "host_video": "true",
      "participant_video": "true",
      "join_before_host": "False",
      "mute_upon_entry": "False",
      "watermark": "true",
      "audio": "voip",
      "auto_recording": "cloud"
   }
}

# Send a request with headers including a token and meeting details
def create_zoom_meeting():
   headers = {
      'authorization': 'Bearer ' + generate_token(),
      'content-type': 'application/json'
   }

   # Make a POST request to the Zoom API endpoint to create the meeting
   response = requests.post(
      f'https://api.zoom.us/v2/users/me/meetings',  headers=headers, data=json.dumps(meeting_details)
   )
   print("\nCreating Zoom meeting...\n")

   # Convert the response to JSON and extract the meeting details
   response_json = json.loads(response.text)
   join_url = response_json["join_url"]
   meeting_password = response_json["password"]

   # Print the meeting details
   print(f'\nHere is your Zoom meeting link {join_url} and your password: "{meeting_password}"\n')
   
# Run the create_zoom_meeting function
create_zoom_meeting() 

Explanation

  • The code imports necessary libraries jwt, requests, json, and time .

  • This code defines the API key and key variables for use later in the program.

  • The code defines a function named generateToken() that uses the PyJWT library to create a token for authentication. The function encodes a payload that contains the API key and an expiration time, then signs the payload with the API secret using the HS256 hashing algorithm. The token is returned as a UTF-8 string.

  • The code defines a dictionary named meetingdetails that contains the details of a Zoom meeting, such as the title, start time, duration, and settings.

  • The code defines a function named createMeeting() that sends a POST request to the Zoom API endpoint to create a new meeting. The function first calls the generateToken() function to obtain an authentication token, then sets the headers of the request to include the token and the content type as JSON. The function sends the meetingdetails as a JSON-encoded string in the body of the request. If the request is successful, the function prints the meeting details such as the join URL and password.

  • This code calls the createMeeting() function to create a new Zoom meeting.

  • The code uses comments to explain what each part of the program is doing.

Output

一旦运行此代码,它将产生以下输出 −

can you change the value in this
creating zoom meeting …
here is your zoom meeting link
https://us04web.zoom.us/j/12345678901?pwd=AbCdEfGhIjKlMnOpQrStUvWxYz and your password: "XyZaBc123"

Conclusion

In conclusion, creating a meeting with the Zoom API in Python is a straightforward process that can be achieved using the Zoom API wrapper for Python.

By following the steps outlined in this guide, developers can easily integrate Zoom meetings into their Python applications and automate the process of creating meetings for their users.

The above is the detailed content of How to create a meeting using Zoom API in Python?. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
How to Use Python to Find the Zipf Distribution of a Text FileHow to Use Python to Find the Zipf Distribution of a Text FileMar 05, 2025 am 09:58 AM

This tutorial demonstrates how to use Python to process the statistical concept of Zipf's law and demonstrates the efficiency of Python's reading and sorting large text files when processing the law. You may be wondering what the term Zipf distribution means. To understand this term, we first need to define Zipf's law. Don't worry, I'll try to simplify the instructions. Zipf's Law Zipf's law simply means: in a large natural language corpus, the most frequently occurring words appear about twice as frequently as the second frequent words, three times as the third frequent words, four times as the fourth frequent words, and so on. Let's look at an example. If you look at the Brown corpus in American English, you will notice that the most frequent word is "th

How Do I Use Beautiful Soup to Parse HTML?How Do I Use Beautiful Soup to Parse HTML?Mar 10, 2025 pm 06:54 PM

This article explains how to use Beautiful Soup, a Python library, to parse HTML. It details common methods like find(), find_all(), select(), and get_text() for data extraction, handling of diverse HTML structures and errors, and alternatives (Sel

Mathematical Modules in Python: StatisticsMathematical Modules in Python: StatisticsMar 09, 2025 am 11:40 AM

Python's statistics module provides powerful data statistical analysis capabilities to help us quickly understand the overall characteristics of data, such as biostatistics and business analysis. Instead of looking at data points one by one, just look at statistics such as mean or variance to discover trends and features in the original data that may be ignored, and compare large datasets more easily and effectively. This tutorial will explain how to calculate the mean and measure the degree of dispersion of the dataset. Unless otherwise stated, all functions in this module support the calculation of the mean() function instead of simply summing the average. Floating point numbers can also be used. import random import statistics from fracti

How to Perform Deep Learning with TensorFlow or PyTorch?How to Perform Deep Learning with TensorFlow or PyTorch?Mar 10, 2025 pm 06:52 PM

This article compares TensorFlow and PyTorch for deep learning. It details the steps involved: data preparation, model building, training, evaluation, and deployment. Key differences between the frameworks, particularly regarding computational grap

Serialization and Deserialization of Python Objects: Part 1Serialization and Deserialization of Python Objects: Part 1Mar 08, 2025 am 09:39 AM

Serialization and deserialization of Python objects are key aspects of any non-trivial program. If you save something to a Python file, you do object serialization and deserialization if you read the configuration file, or if you respond to an HTTP request. In a sense, serialization and deserialization are the most boring things in the world. Who cares about all these formats and protocols? You want to persist or stream some Python objects and retrieve them in full at a later time. This is a great way to see the world on a conceptual level. However, on a practical level, the serialization scheme, format or protocol you choose may determine the speed, security, freedom of maintenance status, and other aspects of the program

What are some popular Python libraries and their uses?What are some popular Python libraries and their uses?Mar 21, 2025 pm 06:46 PM

The article discusses popular Python libraries like NumPy, Pandas, Matplotlib, Scikit-learn, TensorFlow, Django, Flask, and Requests, detailing their uses in scientific computing, data analysis, visualization, machine learning, web development, and H

Scraping Webpages in Python With Beautiful Soup: Search and DOM ModificationScraping Webpages in Python With Beautiful Soup: Search and DOM ModificationMar 08, 2025 am 10:36 AM

This tutorial builds upon the previous introduction to Beautiful Soup, focusing on DOM manipulation beyond simple tree navigation. We'll explore efficient search methods and techniques for modifying HTML structure. One common DOM search method is ex

How to Create Command-Line Interfaces (CLIs) with Python?How to Create Command-Line Interfaces (CLIs) with Python?Mar 10, 2025 pm 06:48 PM

This article guides Python developers on building command-line interfaces (CLIs). It details using libraries like typer, click, and argparse, emphasizing input/output handling, and promoting user-friendly design patterns for improved CLI usability.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.