Disable tokens for longpoll socket?

Hey!

Is there any way to disable tokens verification for a socket?

I’m doing a phoenix app to serve as a mock for a service we use. And there’s a need to mock a longpolling route which I’m trying to do with phoenix channels.

My issue right now is that it seems to be mandatory to send a token for polling. (I’ve seen that on the first request without it, the app replies with one to do a new request).
Is there a way to disable it? I tried to set the crypto options for the socket but without any progress.

I’m using phoenix v1.4.1

Thanks