Broadcasting
Introduction
Configuration
DRIVER = 'pusher'DRIVERS = {
'pusher': {
'app_id': os.getenv('PUSHER_APP_ID', '29382xx..'),
'client': os.getenv('PUSHER_CLIENT', 'shS8dxx..'),
'secret': os.getenv('PUSHER_SECRET', 'HDGdjss..'),
},
'ably': {
'secret': os.getenv('ABLY_SECRET', 'api:key')
},
'pubnub': {
'secret': env('PUBNUB_SECRET', ''),
'publish_key': env('PUBNUB_PUBLISH_KEY', ''),
'subscribe_key': env('PUBNUB_SUBSCRIBE_KEY', '')
}
}Pusher
Ably
PubNub
Usage
Channels
Changing Drivers
Last updated