{"id":24407695,"url":"https://github.com/cynegeirus/dotnet-kavimeet","last_synced_at":"2025-03-13T08:25:37.855Z","repository":{"id":271301519,"uuid":"913010207","full_name":"cynegeirus/dotnet-kavimeet","owner":"cynegeirus","description":"This repository contains a C# application that connects to the Zoom API using OAuth for server-to-server authentication. It retrieves active users from a Zoom account and schedules a meeting for each user.","archived":false,"fork":false,"pushed_at":"2025-01-06T21:11:22.000Z","size":2194,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-20T05:17:52.745Z","etag":null,"topics":["zoom","zoom-api","zoom-automation","zoom-bot","zoom-meetings","zoom-sdk"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cynegeirus.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-06T21:08:17.000Z","updated_at":"2025-01-06T21:12:02.000Z","dependencies_parsed_at":"2025-01-06T22:21:54.570Z","dependency_job_id":"96d5ae61-f081-4c6b-a124-579628a797e4","html_url":"https://github.com/cynegeirus/dotnet-kavimeet","commit_stats":null,"previous_names":["cynegeirus/dotnet-kavimeet"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cynegeirus%2Fdotnet-kavimeet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cynegeirus%2Fdotnet-kavimeet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cynegeirus%2Fdotnet-kavimeet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cynegeirus%2Fdotnet-kavimeet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cynegeirus","download_url":"https://codeload.github.com/cynegeirus/dotnet-kavimeet/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243367459,"owners_count":20279557,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["zoom","zoom-api","zoom-automation","zoom-bot","zoom-meetings","zoom-sdk"],"created_at":"2025-01-20T05:17:44.946Z","updated_at":"2025-03-13T08:25:37.780Z","avatar_url":"https://github.com/cynegeirus.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Zoom Meeting Scheduler - KaviMeet\n\nThis repository contains a C# application that connects to the Zoom API using OAuth for server-to-server authentication. It retrieves active users from a Zoom account and schedules a meeting for each user.\n\n## Requirements\n\n- .NET 6 or higher\n- Zoom API credentials (Client ID, Client Secret, Account ID)\n- [ZoomNet](https://github.com/ZoomNet/ZoomNet) library for interacting with Zoom API\n\n## Setup\n\n### 1. Obtain Zoom API Credentials\nTo use the Zoom API, you must create an application in the [Zoom Marketplace](https://marketplace.zoom.us/) and obtain the following credentials:\n- **Account ID**: The ID of the Zoom account from which the application will operate.\n- **Client ID**: The client ID to authenticate the application.\n- **Client Secret**: The client secret to authenticate the application.\n\nOnce you have the credentials, update them in the code below:\n\n```csharp\nvar accountId = \"YOUR_ACCOUNT_ID\";\nvar clientId = \"YOUR_CLIENT_ID\";\nvar clientSecret = \"YOUR_CLIENT_SECRET\";\n```\n\n### 2. Configure Your Project\n\n1. Clone the repository or create a new .NET project.\n2. Add the **ZoomNet** NuGet package to your project:\n\n   ```bash\n   dotnet add package ZoomNet\n   ```\n\n3. Add **Microsoft.Extensions.Logging** and **Newtonsoft.Json**:\n\n   ```bash\n   dotnet add package Microsoft.Extensions.Logging\n   dotnet add package Newtonsoft.Json\n   ```\n\n### 3. Run the Application\n\n1. Build and run the application using your preferred method (Visual Studio or command line).\n2. The application will:\n   - Connect to the Zoom API using the credentials you provided.\n   - Retrieve a list of active users.\n   - Schedule a meeting titled \"Example Meeting\" for each user.\n3. Monitor the logs to see which users were successfully scheduled for a meeting.\n\nThe meeting is created with the following parameters:\n- **Topic**: \"Example Meeting\"\n- **Agenda**: \"Example Meeting\"\n- **Start Time**: Current date and time\n- **Duration**: 30 minutes\n- **Time Zone**: Europe/Istanbul\n\n### Example Output:\n\nThe application will output log messages like the following:\n\n```bash\n2025-01-06T12:30:45 =\u003e Login successful by Akın BİÇER (akin.bicer@outlook.com.tr).\n{\n  \"id\": \"meeting-id\",\n  \"topic\": \"Example Meeting\",\n  \"start_time\": \"2025-01-06T12:30:45\",\n  \"duration\": 30,\n  \"join_url\": \"https://zoom.us/j/meeting-id\"\n}\n```\n\n## Notes\n\n- This application uses **Server-to-Server OAuth** authentication to securely interact with Zoom API without requiring user interaction.\n- The default meeting topic and agenda can be changed in the code.\n- Ensure that your Zoom account has access to the appropriate API permissions for creating meetings and retrieving user data.\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE). See the license file for details.\n\n## Issues, Feature Requests or Support\n\nPlease use the Issue \u003e New Issue button to submit issues, feature requests or support issues directly to me. You can also send an e-mail to akin.bicer@outlook.com.tr.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcynegeirus%2Fdotnet-kavimeet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcynegeirus%2Fdotnet-kavimeet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcynegeirus%2Fdotnet-kavimeet/lists"}