Closed JoshuaVandaele closed 4 weeks ago
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.