test.asdc.cc
Multi-app Zoom utility endpoint. Add each Zoom app to /var/www/test.asdc.cc/zoom-app-clients.json, keyed by its client ID.
Webhook Receiver
- Configure Zoom webhook URL as
https://test.asdc.cc/?clientid={clientid}. - Alternative path:
https://test.asdc.cc/webhook?clientid={clientid}. - Latest webhook is saved to
webhook.txt; per-client copy is saved underwebhooks/. - Read latest per-client payload with
GET /webhook?clientid={clientid}.
OAuth Redirect
Use this redirect URL in the Zoom app OAuth settings:
https://test.asdc.cc/redirecturlforoauth?type=user&clientid={clientid}
The callback exchanges code using the matching client secret from the JSON registry and returns the token response. Tokens are not saved on disk.
SDK Signatures
- Meeting SDK:
POST /meeting/?clientid={clientid}with JSON{"meetingNumber":"123456789","role":0}. - Video SDK:
POST /video/?clientid={clientid}with JSON{"sessionName":"demo","role":1,"sessionKey":"optional"}.
Health
Check service status with GET /health.