Public channels
Public channels should be used for publicly accessible data as they do not require any form authorisation in order to be subscribed to.
You can subscribe and unsubscribe from channels at any time. There's no need to wait for the Channels to finish connecting first.
- JavaScript
- iOS
- Laravel Echo
1
var channel = pusher.subscribe(channelName);
- channelName (String)
- The name of the channel to subscribe to.
- Returns
- A channel object which events can be bound to. See binding to events.
- JavaScript
- iOS
- Laravel Echo
1
pusher.unsubscribe(channelName);
- channelName (String)
- The name of the channel to unsubscribe from.
See binding to events for general information about how to bind to events on a channel object.
You can bind to the following pusher:
events on a public channel: