We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I have just found this extension and it looks very interesting. Thanks for it.
However, when I try to connect to MQTT server which requires authorization it fails. Call:
MQTT tcp://localhost:8883 Topic: test/topic username: user password: password
fails with message Client mqttjs_c61e50e4 disconnected, not authorised..
Client mqttjs_c61e50e4 disconnected, not authorised.
When I use the same values from within a Node.js app, the connection is successful.
Looks like the username and password are not passed to the MQTT server.
The text was updated successfully, but these errors were encountered:
@snekcz An error has crept in. This will be corrected with the next release. Workaround in the meantime would be the following notation
{{ request.options = { username: "user", password: "password" }; }} MQTT tcp://localhost:8883 Topic: test/topic
fixed with AnWeber/httpyac@5d266a5
Sorry, something went wrong.
@AnWeber Thanks a lot for the workaround and fix.
fix released with v5.8.1
No branches or pull requests
Hi,
I have just found this extension and it looks very interesting. Thanks for it.
However, when I try to connect to MQTT server which requires authorization it fails.
Call:
fails with message
Client mqttjs_c61e50e4 disconnected, not authorised.
.When I use the same values from within a Node.js app, the connection is successful.
Looks like the username and password are not passed to the MQTT server.
The text was updated successfully, but these errors were encountered: