apresence / ZoomJWT

C# Library (.NET Framework) for creating Java Web Tokens for use with Zoom APIs, SDKs, etc.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ZoomJWT

C# Library (.NET Framework) for creating Java Web Tokens (JWTs) for use by Zoom Apps to authenticate to the various Zoom APIs/SDKs.

Generating these tokens can be a bit tricky. At the time this library was written, the information on how to generate these tokens was not available in any one place, and a reliable implementation in C# could not be found. Thus, I created this library for my own use and figured I'd share it with others.

Eseentially, this project is an amalgamation of the following:

This library was written primarily for use with the Zoom Client SDK C# Wrapper as part of my In-Meeting Zoom Bot SDK project. It can be used to generate valid JWTs for any Zoom APIs, and those generated JWTs can be used from any programming language. The CreateToken() function should even work with other applications besides Zoom, but this has not been tested.

To use, extract the release ZIP file and/or compile the DLL and add a reference to it in your C# project. Then, use the library to generate and use a token (A key and secret are required, please consult the appropriate Zoom Client SDK or API documentation for details).

Here is some example code for use with the Zoom Client SDK C# Wrapper:

using static ZoomJWT.CZoomJWT;

...

    sdkErr = CZoomSDKeDotNetWrap.Instance.GetAuthServiceWrap().SDKAuth(new AuthContext()
    {
        jwt_token = CreateClientSDKToken(YOUR_SDK_KEY, YOUR_SDK_SECRET),
    });

If you need to use the Zoom API, it requires a different type of token. Example:

using static ZoomJWT.CZoomJWT;

...

    Console.WriteLine("Your API token is: " + CreateAPIToken(YOUR_API_KEY, YOUR_API_SECRET));

Contributions by the community are welcome!

About

C# Library (.NET Framework) for creating Java Web Tokens for use with Zoom APIs, SDKs, etc.

License:GNU General Public License v3.0


Languages

Language:C# 100.0%