-
-
Notifications
You must be signed in to change notification settings - Fork 325
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
[BUG] - ArchiSteamFarm fails to authenticate #773
Comments
This issue has been automatically marked as stale because it has not had recent activity. This might be due to missing feedback from OP. It will be closed if no further activity occurs. Thank you for your contributions. |
This is still an issue |
ArchiSteamFarm on $this->config->password doesn't urlencode the password so it passes like p@ssword with the special character on the url itself, which is a big problem, i've never used ArchiSteamFarm, i can make a quick fix adding a urlencode($this->config->password) to the code parts. |
PR made, now just wait for the merge and test it out. |
Describe the bug
My password contains special characters such as
*
,!
,^
,@
,%
, ..., which the current implementation makes ArchiSteamFarm return 401.To Reproduce
Steps to reproduce the behavior:
Expected behavior
A successfully established connection
Version info (please complete the following information):
Additional context
This is fixable by using the Authentication header instead of putting the password in the URL, this issue already happened to me in the past.
The text was updated successfully, but these errors were encountered: