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
TIn order to terminate a user's connections, the user must have been authenticated. Check the [Server user authentication docs](http://pusher.com/docs/authenticating_users) for the information on how to create a user authentication endpoint.
294
+
295
+
To terminate all connections established by a given user, you can use the `terminate_user_connections` function:
296
+
297
+
```python
298
+
pusher_client.terminate_user_connections(userId)
299
+
```
300
+
301
+
Please note, that it only terminates the user's active connections. This means, if nothing else is done, the user will be able to reconnect. For more information see: [Terminating user connections docs](https://pusher.com/docs/channels/server_api/terminating-user-connections/).
302
+
290
303
## End to End Encryption
291
304
292
305
This library supports end to end encryption of your private channels. This
@@ -400,6 +413,7 @@ Get the list of channels in an application | *✔*
400
413
Get the state of a single channel | *✔*
401
414
Get a list of users in a presence channel | *✔*
0 commit comments