How to join a zoom meeting with request in python?

I’m starting a python project which joins a specific zoom meeting room when you input the id and passcode, ex id 00000001 and python will give request to Zoom meeting on web - Zoom but I don’t know how to bypass the next steps like input the passcode and name. Can someone help me? Here’s my code

import hashlib
import os, sys
import requests
import random
from bs4 import BeautifulSoup as soup
os.system('cls')
os.system('color a')

headers = {
    'user-agent' : 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36'
}

data = {
    'inputname' : 'person_in_red',
    'joinBtn' : 'Join'
}

def createLog(logging_contents):
    f = open("Log.txt","w")
    f.write(str(logging_contents))

def logo():
    os.system('cls')
    print("[] Meeting ID: "+str(meeting_id))
    print("[] Passcode : " + str(meeting_pass))
    print("[] Meeting Link: "+str(url))

def startflooder():
    with requests.Session() as s:
        payload = {
        'onetrust-accept-btn-handler' : '',
        'inputname' : 'nigger_in_red',
        'inputpasscode' : str(meeting_pass)
        }
        p = s.get(url,data=payload, headers=headers)
        print(p.text)

meeting_id = input("[] Meeting ID: ")
meeting_pass = input("[] Meeting Passcode: ")
url = "https://zoom.us/wc/join/"+str(meeting_id)

logo()
startflooder()

Hey @IaHamidd

Thanks for reaching out! While we don’t directly support programmatically joining meetings with the Zoom Web Client we do support it with our Web SDK.

The Web SDK allows you to embed a meeting in your webpage and provide a similar experience to the Zoom Web Client where you have programmatic control.

Let me know if that helps.

Max

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.