Giter Club home page Giter Club logo

zoom-sdk-windows's Introduction

Zoom Windows Software Development Kit (SDK)

Added notes for setting up this repository

See NOREADME.md

Table of Contents

🚨 Announcement 🚨

To align with Zoom’s recent announcement pertaining to our security initiative, Zoom Client SDKs have added AES 256-bit GCM encryption support, which provides more protection for meeting data and greater resistance to tampering. The system-wide account enablement of AES 256-bit GCM encryption will take place on June 01, 2020. You are strongly recommended to start the required upgrade to this latest version 4.6.21666.0428 at your earliest convenience. Please note that any Client SDK versions below 4.6.21666.0428 will no longer be operational from June 01.

If you would like to test the latest SDK with AES 256-bit GCM encryption meeting before 05/30, you may:

  1. Download the latest version of Zoom client: https://zoom.us/download
  2. Visit https://zoom.us/testgcm and launch a GCM enabled meeting with your Zoom client, you will see a Green Shield icon that indicates the GCM encryption is enabled
  3. Use SDK to join this meeting

Latest SDK Notifications

  1. Starting from 4.6.15798.0403, all DLL files(*.dll) and EXE files(*.exe) cannot be re-signed. Please DO NOT re-sign or assign new digital signature to those files as assigning new digital signature on these files could lead to fatal errors.

  2. Our Zoom SDK and Zoom Client share some common resources in the OS, in order to allow Zoom client and Zoom client SDK app work at the same time, since v4.4.56616.1028, we renamed the filename of the following shared resources:

  • CptHost.exe -> zcscpthost.exe
  • airhost.exe -> zcsairhost.exe
  • CptService.exe -> zCSCptService.exe
  1. If you are using SDK versions before 4.6.15798.0403, kindly advise that please do not re-sign / assign new digital signature to the following files as assigning new digital signature on these files could lead to fatal errors:
    • CptControl.exe
    • CptInstall.exe
    • CptHost.exe / zcscpthost.exe
    • airhost.exe / zcsairhost.exe
    • CptService.exe / zCSCptService.exe
    • CptShare.dll
    • zzhost.dll
    • zzplugin.dll(Deprecated since v4.6.15074.0203)
    • aomhost64.exe
    • zCrashReport.dll
    • libeay32.dll
    • ssleay32.dll

Full Documentation && Community Support

You can find the full Zoom Windows SDK documentation and the community support forum here:

What is Zoom Windows SDK?

Zoom SDK makes it easy to integrate Zoom with your Windows applications, and boosts up your applications with the power of Zoom.

  • Easy to use: Our SDK is built to be easy to use. Just import the libraries, call a few functions, and we will take care all video conferencing related stuffs for you.
  • Localizable: Our SDK naturally supports 7 major languages, and you can add more to grow your applications internationally.
  • Custom Meeting UI: If you want to add your own decorations to your Zoom meeting rooms, try our Custom UI feature to make your meeting room special.

Disclaimer

Please be aware that all hard-coded variables and constants shown in the documentation and in the demo, such as Zoom Token, Zoom Access, Token, etc., are ONLY FOR DEMO AND TESTING PURPOSES. We STRONGLY DISCOURAGE the way of HARDCODING any Zoom Credentials (username, password, API Keys & secrets, SDK keys & secrets, etc.) or any Personal Identifiable Information (PII) inside your application. WE DON’T MAKE ANY COMMITMENTS ABOUT ANY LOSS CAUSED BY HARD-CODING CREDENTIALS OR SENSITIVE INFORMATION INSIDE YOUR APP WHEN DEVELOPING WITH OUR SDK.

Getting Started

The following instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Prerequisites

Before you try out our SDK, you would need the following to get started:

  • A Zoom Account: If you do not have one, you can sign up at https://zoom.us/signup.
  • A device with Windows OS:
    • OS: Windows XP or later. Currently Windows 10 UWP is not supported.

Installing

Clone or download a copy of our SDK files from GitHub. After you unzipped the file, you should have the following folders:

.
β”œβ”€β”€ CHANGELOG.md
β”œβ”€β”€ LICENSE.md
β”œβ”€β”€ README.md
β”œβ”€β”€ bin
β”œβ”€β”€ h
β”œβ”€β”€ lib
β”œβ”€β”€ [sdk_demo] <-- demo app is inside
└── version.txt

Launch your Visual Studio, locate the sdk_demo.vcproj file, and open it.

The DemoUI.cpp file includes a high-level application which you can reference to understand how to call the stack functions and register call backs.

The Zoom SDK runs as a DLL in the context of the calling application process.

Documentation

Please visit [https://marketplace.zoom.us/docs/sdk/native-sdks/windows] for details of each features and functions.

Navigating SDK sample files

The following table provides the link to the implementation of each features in our demo app:

UI mode Feature Corresponding sample files
Essential features SDK Initialization & Authentication * sdk_init_auth_ui.cpp
* init_auth_sdk_workflow.cpp
* sdk_util.cpp
Authenticate with Zoom REST API and start a meeting as API user * zoomHmacSHA256.cpp
* httpRequestHelper.cpp
* login_sdk_login_UI.cpp
* login_restapi_without_login_workflow.cpp
Login with email & password * login_sdk_login_UI.cpp
* login_login_with_email_workflow.cpp
Login with SSO token * login_sdk_login_UI.cpp
* login_login_with_sso_workflow.cpp
Start an instant meeting(For Logged-in user) * loggedIn_sdk_controller.cpp
* loggedIn_sdk_controller_workflow.cpp
Join a meeting * join_meeting_for_login_user_ui.cpp
* join_meeting_for_login_user_workflow.cpp
* login_join_meeting_only_workflow.cpp
* sdk_util.cpp
Schedule a meeting (For logged-in user) * schedule_meeting_ui.cpp
* schedule_meeting_workflow.cpp
User management * user_manager.cpp
Settings * settings_ui.cpp
* settings_audio_workflow.cpp
* settings_feature_custom_workflow.cpp
* settings_general_workflow.cpp
* settings_recording_workflow.cpp
* settings_ui_custom_workflow.cpp
* settings_video_workflow.cpp
* settings_virtualBG_workflow.cpp
Invitation * invitation_ui.cpp
* invitation_workflow.cpp
Custom UI Basic UI management * custom_ui_mgr.cpp
* custom_ui_mgr_flow.cpp
Video * custom_ui_video_flow.cpp
* custom_ui_video_mgr.cpp
Share * custom_ui_share_flow.cpp
* custom_ui_share_mgr.cpp
Annotation * annotateBarWindow.cpp
* annotateClearWindow.cpp
* annotateDrawWindow.cpp
* annotateFormatWindow.cpp
* annotateSplotlightWindow.cpp
* annotateStampWindow.cpp
Arrow * arrow_window.cpp
Camera Control * cameraControlWindow.cpp
Recording * customizedUIRecordMgr.cpp
Share Toolbar * shareToolbarWindow.cpp
View Options * viewOptionsWindow.cpp
Chat * chat_controller_ui.cpp
* chat_controller_workflow.cpp
Close caption * close_caption_ui.cpp
* close_caption_workflow.cpp
Dial-in country * dial_in_country_ui.cpp
Display CC * display_cc_ui.cpp
Participant UI * participant_ui.cpp
Participant pop up menu * participantPopMenu.cpp
More features * more_features_ui.cpp
* more_features_workflow.cpp
More menu * more_menu_ui.cpp
Toolbar * toolbar_bottom_ui.cpp
* toolbar_bottom_workflow.cpp
* toolbar_manager.cpp

SDK Reference

You may find the SDK interface reference at https://marketplace.zoom.us/docs/sdk/native-sdks/windows/sdk-reference. If you would like to get a local copy of the SDK reference, you may download it here.

Versioning

For the versions available, see the tags on this repository.

Change log

Please refer to our CHANGELOG for all changes.

Frequently Asked Questions (FAQ)

  • 1️⃣ Getting ERROR Code: 105035 while using Windows SDK:

    • In most of the cases, this is caused by resigning or adding new signature to the SDK DLL files(*.dll) and EXE files(*.exe)

    Please skip signing / do not add any new signatures to the DLL files(*.dll) and EXE files(*.exe). If the error code appears even if the files are not being re-signed, please visit our Zoom Developer Community Forum and seek help.

  • Please visit our Zoom Developer Community Forum for further assistance.

Support

For any issues regarding our SDK, please visit our new Community Support Forum at https://devforum.zoom.us/.

License

Use of this software is subject to important terms and conditions as set forth in the License file

Please refer to LICENSE.md file for details

Acknowledgments

  • ⭐ If you like our SDK, please give us a "Star". Your support is what keeps us moving forward and delivering happiness to you! Thanks a million! πŸ˜ƒ
  • If you need any support or assistance, we are here to help you: Zoom Developer Community Forum;

Copyright Β©2020 Zoom Video Communications, Inc. All rights reserved.

zoom-sdk-windows's People

Contributors

carsonzoom avatar thiyaramalingam avatar nick-ortega-bose avatar zoomdevplatform avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.