mirror of
https://github.com/hoppscotch/hoppscotch.git
synced 2026-04-26 01:06:00 +03:00
[GH-ISSUE #898] Add authentication to MQTT #317
Labels
No labels
CodeDay
a11y
browser limited
bug
bug fix
cli
core
critical
design
desktop
discussion
docker
documentation
duplicate
enterprise
feature
feature
fosshack
future
good first issue
hacktoberfest
help wanted
i18n
invalid
major
minor
need information
need testing
not applicable to hoppscotch
not reproducible
pull-request
question
refactor
resolved
sandbox
self-host
spam
stale
testmu
wip
wont fix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hoppscotch#317
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @BOZG on GitHub (May 24, 2020).
Original GitHub issue: https://github.com/hoppscotch/hoppscotch/issues/898
Is your feature request related to a problem? Please describe.
The MQTT function works great but doesn't allow connections to MQTT servers that require authentication.
Describe the solution you'd like
The ability to use authentication with the MQTT feature.
Describe alternatives you've considered
I haven't considered any as I don't know what's needed to implement this feature!
@rahulnpadalkar commented on GitHub (May 26, 2020):
Authentication using username and password @BOZG ? Thanks!
@BOZG commented on GitHub (May 26, 2020):
In my case I meant username and password but MQTT also allows for X509 certificate authentication and client ID authentication.
Client ID can be used as a standalone authentication method, as an additional layer to basic auth (so that username, password and client ID must match) or a simple client identifier (which I use it for).
@rahulnpadalkar commented on GitHub (May 26, 2020):
Postwoman uses paho-mqtt library
Ref doc - https://www.eclipse.org/paho/files/jsdoc/Paho.MQTT.Client.html
I don't see certificate base authentication option available (Correct me if i am wrong). Any suggestions?
@BOZG commented on GitHub (May 28, 2020):
Sorry for the delay in replying! Unfortunately that side of things is a little beyond me. Certificate authentication is definitely a thing though but maybe it's just not supported by Paho?
@liyasthomas commented on GitHub (May 29, 2020):
Adding auth to MQTT broker isn't in roadmap. Hence closing this issue for now.