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

integrating zoom web sdk in local join to the zoom meeting then facing an error “joining meeting timeout” and “signature is invalid”

Hi I integrating zoom web SDK in local join to the zoom meeting then facing an error but I pass all write parameters and details. please help me, somebody. also how to store this $_sig variable value in meeting.js signature…
0
votes
1 answer

Getting generic network error with Zoom Web SDK when meeting is not started. How can I show real error in the modal?

I am getting generic error in Zoom Web SDK 1.9.5 when trying to connect to a meeting that has not started. ZoomMtg.setZoomJSLib('https://dmogdx0jrul3u.cloudfront.net/1.9.5/lib', '/av'); ZoomMtg.preLoadWasm(); ZoomMtg.prepareJssdk(); …
0
votes
0 answers

getting error of "got 3 arguments expected 5" while using react-native-zoom-bridge

While using react-native-zoom-bridge getting the error of "got 3 arguments expected 5" in the android simulator. Any idea? Code: import {View, Text, Alert} from 'react-native'; import ZoomBridge from 'react-native-zoom-bridge'; const zoomMeeting()…
Preeti Sharma
  • 112
  • 14
0
votes
1 answer

Konva zoom fill to content on the stage

Hi I'm very lost on how to accomplish this. I'm basically trying to zoom into some content when it is added to the stage. I have one stage and one layer. Some shapes are added to the layer, let's say some Lines are added with some predefined points…
Pablo Corso
  • 119
  • 2
  • 6
0
votes
2 answers

overwritten inline styling still applies

I am working on implementing zoom meetings to the website using zoom SDK. When implemented, it overwrote some of my styling, when I looked at the console, it showed that zoom SDK set min-width:1100px; I tried to overwrite it by using !important and…
0
votes
0 answers

Laravel Socialite stopped working: "Socialite driver [zoom] not supported"

I was searching the web for two hours now... Removed vendor/, Cleared the app cache thousand times.. I already tried the double backslash thing, the leading slash thing:
Andreas Pabst
  • 105
  • 2
  • 12
0
votes
1 answer

How to avoid the Warning: Expected server HTML to contain a matching

I was trying to integrate Zoom into my website. I am using NextJS. There was one error earlier telling - window is undefined. I understand that the server cannot have the window object and so this error. I have fixed the error but not sure if that's…
Murthy
  • 177
  • 2
  • 12
0
votes
1 answer

Zoom api problem - invalid acces token - JWT

import requests import json import jwt import datetime APİ_KEY = "100 percent correct api key" APİ_SECRET = "100 percent correct api secret" payload = { 'iss':APİ_KEY, 'exp':datetime.datetime.now() + datetime.timedelta(hours=2) } token =…
Sems
  • 11
  • 3
0
votes
0 answers

Shrink content when zooming in without messing up layout?

I am a new user of html, and I am currently trying to figure out how to make all my contents shrink but also not be messed up when I zoom in. The context is that I am working on a 27 inch display and everything appears to be in perfect size and…
Toknn
  • 75
  • 1
  • 8
0
votes
1 answer

Unity Smooth Move and Zoom UI on Canvas for Android/IOS

I wrote this scripr for my tasks and after surf on forums i could not find good decision, so i modify code for you guys and post this. Maybe someone will be useful. And if you have some revisions, i will be glad to hear?
0
votes
1 answer

How do you make a google map keep the zoom and center location on refresh?

I have this: function initMap() { // Create a new map object focused on PA map = new google.maps.Map(document.getElementById('Map'), { zoom: 8, center: { lat: 41, lng: -78 }, }); I would like the user to be…
Matchinski
  • 65
  • 1
  • 1
  • 5
0
votes
1 answer

How do I change the color of links in a leaflet container, without changing the zoom buttons' color

I'm new to programming, and this is my first post (just signed up!). First, this is for a school assignment, but what I'm trying to accomplish is not required; I simply find the problem interesting. I've failed to find an answer elsewhere, but sorry…
789
  • 3
  • 1
0
votes
1 answer

How to avoid user to be able to set browser zoom level below a certain threshold?

So basically I want the users of my website to be unable to reduce the zoom level below a certain point, at all times. The reason to do that is to avoid them to see some pitfalls of my frontend design. Basically I wanted a skewed container abd, in…
blackcub3s
  • 189
  • 1
  • 4
0
votes
1 answer

Can I change sdk installed in project based on scheme?

I need to use zoom sdk, and it turns out there are 2 versions, for device only and device+simulator, wheres device+simulator can't included in the app when you ship it for review on Apple. Is there a way to change the sdk installed based on scheme…
Golan Gil
  • 3
  • 1
0
votes
0 answers

How to download file directly to aws storage using lambda

im working on integrating zoom into my application and im stuck at a certain point. So basically i want to get the zoom recordings of a user and download it into my aws s3 bucket. using the zoom api to get recordings give you two links, a play link…
user13468285