You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -128,13 +128,13 @@ Add `authToken` that you got from the REST API to constructor of DyteMeetingInfo
128
128
|`authToken`| After you've created the meeting, add each participant to the meeting using the [Add Participant API](/api?v=v2#/operations/add_participant) The API response contains the `authToken`. |
129
129
|`enableAudio`| Set whether to join the meeting with your Mic ON or OFF by passing `true` or `false`. |
130
130
|`enableVideo`| Set whether to join the meeting with your Camera ON or OFF by passing `true` or `false`. |
131
-
|`baseUrl`| Base URL of the dyte's enviorment you have created the meeting on. |
131
+
|`baseDomain`| Base URL of the dyte's enviorment you have created the meeting on. |
132
132
133
133
```swift
134
134
let meetingInfo =DyteMeetingInfoV2(authToken: authToken,
135
135
enableAudio: true,
136
136
enableVideo: true,
137
-
baseUrl: "dyte.io")
137
+
baseDomain: "dyte.io")
138
138
```
139
139
140
140
## Step 4: Initialize the Dyte meeting
@@ -185,7 +185,11 @@ To join the meeting room, do the following only after you received the doInit co
0 commit comments