How to allow only specific users to connect to a WebsocketConsumer in Django channels?

163 Views Asked by At

I use django channels. I define a JsonWebsocketConsumer:

class Consumer(JsonWebsocketConsumer):
    http_user = True

    def connect(self, message, **kwargs):
        if not message.user.is_superuser:
            self.disconnect(message, **kwargs)

But this doesn't work. Any user can connect and send data that receive(self, text=None, bytes=None, **kwargs) method will handle.

How can I allow only specific users to connect?

1

There are 1 best solutions below

0
On BEST ANSWER

I just used a wrong method.
There is def close(self, status=True) for JsonWebsocketConsumer.