-
Notifications
You must be signed in to change notification settings - Fork 681
Authentication method issue #836
New issue
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
Comments
Assuming you mean you're writing a server with |
I am taking the credentials from filezilla so what can be the solution for this? |
It's entirely up to you how you want to handle a |
I tried by sending password from filezilla but didn't get any password in ctx. I were getting this parameters on ctx - |
I have the same probelm as @kapilgurnani . I try to connect to the FTP Server with filezilla providing username and password within filezilla. but the SFTP Server responds with none as authentication type. Do you know how to avoid this @mscdex ? |
I don't have any suggestions other than the ones I've already given @xMarkusSpringerx. |
The following code snippet might be useful if you only want to allow login through passwords. if (authContext.method !== 'password') {
return authContext.reject(['password'])
} |
I felt this needed to be documented since I spent >1 hour trying to figure it out to finally find this issue buried in the issues list. #993 |
Fix to work with more clients such as FileZilla. mscdex#836 (comment)
I am getting Authentication method none everytime.
I test server by filezilla on linux
I am getting below value on ctx parameter
domain:null
method:"none"
service:"ssh-connection"
user:"abc"
username:"abc"
The text was updated successfully, but these errors were encountered: