etc/emqx_auth_clientid.conf: REST API List all clientids: # Request GET api/v4/auth_clientid # Response { "code": 0, "data": ["clientid1"] } Add clientid: # Request POST api/v4/auth_clientid { "clientid": "a_client_id", "password": "password" } # Response { "code": ...
EMQ X ClientId Authentication Plugin. Contribute to emqx/emqx-auth-clientid development by creating an account on GitHub.
emqx: image: emqx/emqx:latest container_name: emqx restart: always volumes: - /contiocean/emqx/etc:/opt/emqx/etc - /contiocean/emqx/log:/opt/emqx/log - /contiocean/emqx/data:/opt/emqx/data user: root ports: - 1883:1883 - 8083:8083 - 8084:8084 - 8080:8080 - 18083:18083 and then ...
If the emq-auth-http plugin is disabled a client is able to connect with a clientID only. But if I enable this plugin the client can't connect with empty username and password anymore. HTTP request to the auth endpoint is not even sending. And that's strange. Why does emqtt block the...