-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathzoom-app-manifest.json
More file actions
143 lines (143 loc) · 5.09 KB
/
Copy pathzoom-app-manifest.json
File metadata and controls
143 lines (143 loc) · 5.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"display_information": {
"description": "AI meeting assistant with live transcription",
"display_name": "Arlo Meeting Assistant",
"long_description": "Arlo is an intelligent meeting companion that lives inside Zoom. It captures real-time transcripts using RTMS (Realtime Media Streams) without requiring a meeting bot, and provides AI-powered summaries, action items, transcript search, and meeting highlights."
},
"oauth_information": {
"usage": "USER_OPERATION",
"development_redirect_uri": "https://your-ngrok-url.ngrok-free.app/api/auth/callback",
"production_redirect_uri": "https://your-ngrok-url.ngrok-free.app/api/auth/callback",
"oauth_allow_list": [
"https://your-ngrok-url.ngrok-free.app"
],
"strict_mode": false,
"subdomain_strict_mode": true,
"scopes": [
{
"scope": "zoomapp:inmeeting",
"optional": false
},
{
"scope": "meeting:read:meeting",
"optional": false
},
{
"scope": "meeting:write:open_app",
"optional": true
},
{
"scope": "user:read",
"optional": true
}
],
"scope_description": "Arlo needs meeting access for live transcription via RTMS, meeting list access for the upcoming meetings feature, and optional auto-open registration for hands-free meeting start."
},
"features": {
"products": [
"ZOOM_MEETING"
],
"development_home_uri": "https://your-ngrok-url.ngrok-free.app",
"production_home_uri": "https://your-ngrok-url.ngrok-free.app",
"domain_allow_list": [
{
"domain": "your-ngrok-url.ngrok-free.app",
"explanation": "Development server for Arlo Meeting Assistant"
},
{
"domain": "appssdk.zoom.us",
"explanation": "Required for Zoom Apps SDK"
}
],
"in_client_feature": {
"zoom_app_api": {
"enable": true,
"zoom_app_apis": [
"getMeetingContext",
"getMeetingUUID",
"getRunningContext",
"getUserContext",
"getMeetingParticipants",
"authorize",
"onAuthorized",
"promptAuthorize",
"onMessage",
"postMessage",
"showNotification",
"sendMessageToChat",
"openUrl",
"onRunningContextChange",
"onMyUserContextChange",
"sendAppInvitationToAllParticipants",
"sendAppInvitation",
"showAppInvitationDialog",
"onSendAppInvitation",
"startCollaborate",
"endCollaborate",
"runRenderingContext"
]
},
"guest_mode": {
"enable": true,
"enable_test_guest_mode": true
},
"in_client_oauth": {
"enable": true
},
"collaborate_mode": {
"enable": true,
"enable_screen_sharing": false,
"enable_play_together": false
}
},
"zoom_client_support": {
"mobile": {
"enable": false,
"apple_developer_program_team_id": ""
},
"zoom_room": {
"enable": false,
"enable_personal_zoom_room": false,
"enable_shared_zoom_room": false,
"enable_digital_signage": false,
"enable_zoom_rooms_controller": false
},
"pwa_client": {
"enable": false
}
},
"embed": {
"meeting_sdk": {
"enable": false,
"enable_device": false,
"devices": []
},
"contact_center_sdk": {
"enable": false
},
"phone_sdk": {
"enable": false,
"fcm_token": null
}
},
"team_chat_subscription": {
"enable": false
},
"event_subscription": {
"enable": true,
"events": [
{
"subscription_name": "Arlo RTMS Events",
"event_types": [
"meeting.rtms_started",
"meeting.rtms_stopped"
],
"development_webhook_url": "https://your-ngrok-url.ngrok-free.app/api/rtms/webhook",
"production_webhook_url": "https://your-ngrok-url.ngrok-free.app/api/rtms/webhook",
"development_event_custom_header": null,
"production_event_custom_header": null
}
]
}
}
}