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
const client =StreamVideoClient.getOrCreateInstance({ apiKey, user });
72
72
```
73
73
74
+
Anonymous users don't establish an active web socket connection, therefore they won't receive any events. They are just able to watch a livestream or join a call.
75
+
76
+
The token for an anonymous user should contain the `call_cids` field, which is an array of the call `cid`'s that the user is allowed to join.
77
+
78
+
Here's an example JWT token payload for an anonymous user:
const client =newStreamVideoClient({ apiKey, user });
72
72
```
73
73
74
+
Anonymous users don't establish an active web socket connection, therefore they won't receive any events. They are just able to watch a livestream or join a call.
75
+
76
+
The token for an anonymous user should contain the `call_cids` field, which is an array of the call `cid`'s that the user is allowed to join.
77
+
78
+
Here's an example JWT token payload for an anonymous user:
0 commit comments