@johnsharon said in How to login to any site using HTTP client in BAS?:
How to login to any site using HTTP client in BAS?
you must repeat the same requests that your site sends after you click the login button.
@stiwert said in BUG URGENT HTTP CLIENT:
http client dont change space to %20 anymore wich makes all http requests with space to fail.
this happen in record and run mode.
I passed the information about the problem to the developer, thank you.
please fix asap since it makes every http request with space in request to fail
Use the "encodeURIComponent" method to correct the url. The data type should be "expression"
"https://www.google.com/search?q=" + encodeURIComponent("q w e r t y")
