Questions tagged [zoom-sdk]

For programming questions related to the Zoom SDK and how it can be used for integrating Zoom communication platform features. GENERAL USAGE QUESTIONS ABOUT ZOOM ARE OFF-TOPIC! Stack Overflow questions must be about programming using the Zoom SDK/API.

Zoom SDKs allow applications to integrate Zoom’s full-featured unified communications platform.

See github ZOOM page for more info about sdk usage and supported platforms https://github.com/zoom

Zoom SDK Reference Links: https://developers.zoom.us/docs/sdk-references/

340 questions
0
votes
1 answer

How to have a Zoom API that shows my history

I would like to make a program that automatically fetches my Zoom history. To make this program so far I have used zoomus but I am stuck where on getting the API_KEY and API_SECRET. Does anyone know where to get/make this from? # Documentation…
user14246674
0
votes
1 answer

Issue with connecting to Zoom API via Cloudflare

I am trying to send requests to Zoom API via a HTTP request. When testing on my local machine it works perfectly but when I try it on our production server I get the following error: msxml6.dll error '80072efe' The connection with the server was…
Benzine
  • 472
  • 1
  • 5
  • 19
0
votes
0 answers

How to join in a meeting in zoom room app , from another app

In android I can join to zoom meeting , from another app like following private void launchZoomUrl() { Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("zoomus://zoom.us/join?confno=7618757358&pwd=ghR5nb")); if…
Mithun Sarker Shuvro
  • 3,902
  • 6
  • 32
  • 64
0
votes
1 answer

Zoom Web SDK join audio doesn't work on mobile browsers

I'm trying to use Zoom SDK for Angular for my PWA app, but when I'm opening the app on mobile browser or in mobile mode (debug mode on chrome or safari) it doesn't support join with audio and doesn't support the responsive mode. On a regular browser…
Yuri
  • 327
  • 5
  • 7
0
votes
1 answer

Android ZoomSDK - Meeting Service Listener

I'm trying to catch onMeetingStatusChanged event. But for my case, the onMeetingStatusChanged is sometimes invoked, not all the time. Below is my implemented code: @Override protected void onCreate(Bundle savedInstanceState) { …
Huy Nguyen
  • 1,032
  • 14
  • 38
0
votes
1 answer

Post request to get zoom oauth2.0 token results in 403 error

I am trying to make a zoom oauth2.0 app. In order to do so, I am making a backend route that accesses the zoom api. I am trying to follow steps 1 and 2 located https://marketplace.zoom.us/docs/guides/auth/oauth, but I am having trouble with step 2,…
Jatong Su
  • 23
  • 1
  • 8
0
votes
1 answer

Created scheduled meeting using Zoom API says "Invalid meeting ID. (3,001)" when using different Zoom account for "start_url"

Document URL: https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/meetingcreate API URL: https://api.zoom.us/v2/users/me/meetings Request Data: ["type" => 2, "start_time" => "2020-06-30T22:00:00Z"] I have used Authorization token…
Gnanasekar S
  • 1,820
  • 14
  • 15
0
votes
2 answers

Intune ingest ADMX and enable client auto update for Zoom on Windows 10 Azure AD connected devices

I am trying to enforce Zoom auto update for Windows 10 laptops that are Azure connected. I have downloaded the Zoom ADMX file from here: …
Danny Yeet
  • 11
  • 4
0
votes
1 answer

Zoom API - Request to check email does not work

I am trying to consume Zoom's API using PHP and Oauth2. I was able to connect to the aplication and get the token using the generic lib oauth2-client. But, when I try to make a simple request, I get an error, saying that the email is missing. This…
churros
  • 419
  • 1
  • 8
  • 20
0
votes
1 answer

Custom Invitation in Zoom SDK is not working

I am integrating Zoom SDK in my Android project and I am facing an issue regarding custom invitation method. Actually, I tried a custom invitation mode in demo app and it is working fine but when I am trying to do the same in my existing project…
Harjinder Bains
  • 356
  • 3
  • 7
0
votes
0 answers

Change the endpoint URL for Zoom App (Chatbot)

I've created a Zoom App of Chatbot type. Initially, I defined the endpoint URL as my test URL (which were using ngrok) - now I want to change them. I went to Features but I do not find any option to change it. Is there anyway to do it?
Arafat Tehsin
  • 133
  • 15
0
votes
0 answers

Could not find method implementation() for arguments [...] on object of type org.gradle.api.internal.artifacts.dsl.depende

I'm getting an error message while syncing the project with gradle. My error message is: Caused by: org.gradle.internal.metaobject.AbstractDynamicObject$CustomMessageMissingMethodException: Could not find method implementation() for arguments…
Syed Khalid
  • 37
  • 1
  • 5
0
votes
2 answers

How to upload photos/pictures to Zoom API using Python (multipart/form-data) with JWT?

I have been racking my brains trying to get this to work with Python. I see you can do this using Curl and JavaScript, but I prefer not to leave Python. Reading the documents (though, they are pretty bare), it says you must simply format the data in…
0
votes
0 answers

Error while generate Java client for Zoom Swagger/OpenAPI spec

In our test project (Spring Boot app) we would like to use Zoom API. So we tried to generate Java client using swagger codegen and Zoom Swagger/OpenAPI spec But looks like it generates the client with some errors. So we run the following to generate…
0
votes
1 answer

How to get access token from Zoom by sending a request?

I have been working on integrating Zoom video conferencing API in my web application. By using OAuth and authorizing my application to Zoom, I have got an authorization code which can be used to get access token from Zoom to make subsequent API…
Umar Raza
  • 211
  • 1
  • 6
  • 19