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
`remoteVideoView` option is necessary to play media stream. You have to append `<audio>` HTML tag to your page, and pass it to `callOption` to preform a audio call properly.
158
+
`remoteMediaView` option is necessary to play media stream. You should append `<audio>` HTML tag in your page, and pass it to `callOption` to preform a audio call properly.
You can deauthenticate the user with `SendBirdCall.deauthenticate()` method. it will discard all current directCalls, session keys, and user information; except for [SendBirdCallListener](#SendBirdCallListener). `SendBirdCall.deauthenticate()` can be used as 'logout' method for current user.
253
+
254
+
```javascript
255
+
// Deauthenticate
256
+
SendBirdCall.deauthenticate();
257
+
```
258
+
251
259
## Retrieve a call information
252
260
The local or remote user’s information is available via the `directCall.localUser` and `directCall.remoteUser` properties.
0 commit comments