![]() |
VOOZH | about |
This article illustrates using LINQ to access tables within the Zoom via the CData ADO.NET Data Provider for Zoom. To achieve this, we will use LINQ to Entity Framework, which facilitates the generation of connections and can be seamlessly employed with any CData ADO.NET Data Providers to access data through LINQ.
See the help documentation for a guide to setting up an EF 6 project to use the provider.
Enter your data source connection information.
Start by setting the Profile connection property to the location of the Zoom Profile on disk (e.g. C:\profiles\Zoom.apip). Next, set the ProfileSettings connection property to the connection string for Zoom (see below).
To authenticate to Zoom, you can use the OAuth standard to connect to your own data or to allow other users to connect to their data.
First create an OAuth app. To do so, navigate to https://marketplace.zoom.us/develop/create and click Create under the OAuth section. Select whether or not the app will be for individual users or for the entire account, and uncheck the box to publish the app. Give the app a name and click Create. You will then be given your Client Secret and Client ID
After setting the following connection properties, you are ready to connect:
Below is a typical connection string:
Profile=C:\profiles\Zoom.apip;Authscheme=OAuth;OAuthClientId=your_client_id;OAuthClientSecret=your_client_secret;CallbackUrl=your_callback_url;
Using the entity you created, you can now perform select commands. For example:
APIEntities context = new APIEntities();
var meetingregistrantsQuery = from meetingregistrants in context.MeetingRegistrants
select meetingregistrants;
foreach (var result in meetingregistrantsQuery) {
Console.WriteLine("{0} {1} ", result.Id, result.Id);
}
See "LINQ and Entity Framework" chapter in the help documentation for example queries of the supported LINQ.
Connect to live data from Zoom with the API Driver
Connect to Zoom