More details on the project can be found on the link here This extension hopefully will allow teachers and researchers to gain more insights from online learning environments.
You can view a quick demo and introduction to the project here

This product is meant to faciltate the following in ZOOM
- Quizzing
- Grouping
- Student Support
This setup was run using WPF and C#. The ZOOM SKD has its header files in C++. We needed the following external libraries for certain functionalities.
In order to run HAP you would need an APP key and app secret from ZOOM to be able to do the ZOOM SDK calls. In order to do this you would need the following
-
Visual Studio 2019 or higher
-
ZOOM Pro account to be able to get the key and secret. (Pricing details)

-
Windows 10 machine with at least 4 GB of RAM. (Please note that the extension might run on any windows machine but our testing was done on windows 10)
- Please note that just like ZOOM this is a 32-bit application which might not be supported by the tech community in the long run.
- Open
zoom_sdk_demofolder - Click on
zoom_sdk_demo.slnto open this in Visual Studio 2019 - Edit the file called
MainWindow.xaml.csto add your key and secret
private string generateJWT()
{
Console.WriteLine("Generating token");
const string secret = "PASTE YOUR SECRET HERE";
const string key = "PASTE YOUR KEY HERE";
- Rebuild the project to modify the current exe.
- Open the bin folder
- Click on the file called "zoom_sdk_demo.exe"
- You would get a series of prompts that will lead to ZOOM being opened embedded in the HAP extension

- open the folder
zoom_sdk_demo - Click on
zoom_sdk_demo.slnto open this in Visual Studio 2019 or higher - The hierachy would look as follows. (Models contains classes) XAML files contain the UI descriptions. Converters help convert aspects from the model to the UI.
We were required to add some functionalities to the C# wrapper. We added the following functionalities
- OnCohostChanged callback
- isTalking added to user info
- BreakoutRoom interface V2
- participantID added to user info
All of these edits are working with version v5.5.12509.0330 of the ZOOM SDK.
If you need to make edits to the wrapper yourself, please benefit from the following links
- https://bumblebee.com.sg/ref/zoomsdk.php
- https://projects.etc.cmu.edu/help-a-peer/?p=441
- https://devforum.zoom.us/t/how-to-use-the-ibocreator-class-in-c/26548/5
- open the folder labeled
zoom_sdk_c_sharp_wrapfolder - Click on
zoom_sdk_c_sharp_wrap.sln - Edit the files to expand the wrappers functionalities
- Select
Releasefrom the build mode
- Right click on
zoom_sdk_dotnet_wrapin the hierarchy and click onbuildorrebuild
- At the end, this should update your
zoom_sdk_dotnet_wrap.dll,zoom_sdk_dotnet_wrap.pdbandzoom_sdk_dotnet_wrap.dll.metagenin the bin folder.
This will allow new functionalities to be present when you edit the HAP project files.
https://marketplace.zoom.us/docs/sdk/native-sdks/windows/c-sharp-wrapper https://github.com/Kinnara/ModernWpf
Check the developer's Corner on the updates https://projects.etc.cmu.edu/help-a-peer/?cat=3




