-
Notifications
You must be signed in to change notification settings - Fork 95
Authentication with Usename and Password for Client.Legacy #64
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Comments
Hi @mexxBf, Currently the legacy client doesn't supports authenticated requests, but will fix that as soon as possible... probably in milestone 1.6.0. Regards |
Hi @bednar, is there any ETA to version 1.6.0? Its a showstopper for me, so I'am curious :) Thanks |
Hi @mexxBf, version 1.6.0 will be released probably this Friday. Regards |
Hi @mexxBf, The issue is fixed in 1.6.0 milestone. Authenticate requests// client creation
var options = new FluxConnectionOptions("http://127.0.0.1:8086", "my-user", "my-password".ToCharArray());
var fluxClient = FluxClientFactory.Create(options);
fluxClient.QueryAsync(...)
... If you would like to use a preview version use our dev build:
Regards |
Unfortunatelly this method of authentication is not secure, because it adds credentials to URL not to request headers. |
I would love to know a way to authenticate with the legacy client. I want to use flux to query data from an InfluxDB 1.7.10.
In the examples I could not find any clues on how to do it.
Thank you.
The text was updated successfully, but these errors were encountered: