You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Storing User and Password as variables also doesn't work:
in case of .env file variable it breaks even mouseover: instead of {{Password}} value it's showing {{User}} value when you do mouseover on {{Password}}
in case of local variable it shows nothing on mouseover (additionally tested, and it very looks like that mouseover works in very strange way when you have a mixture of .env file variables and @local variables within same request)
Just to confirm - I've tested same requests in postman, and it works properly, so the issue isn't on the backend side (i.e parsing reqs or storing in sql)
Anyway, your solution is really great and very helpful! Thank you so much !
The text was updated successfully, but these errors were encountered:
@dreik for application/x-www-form-urlencoded POST request the body needs to be Percent-Encoded (see MDN). I use encodeUrl package but + signs will not get encoded. You need to do it yourself (see AnWeber/httpyac#677)
I'm trying to send request like this
I'm getting following as the actual request logged in my db:
Storing
User
andPassword
as variables also doesn't work:.env file
variable it breaks even mouseover: instead of{{Password}}
value it's showing{{User}}
value when you do mouseover on{{Password}}
.env file
variables and@local
variables within same request)Just to confirm - I've tested same requests in postman, and it works properly, so the issue isn't on the backend side (i.e parsing reqs or storing in sql)
Anyway, your solution is really great and very helpful! Thank you so much !
The text was updated successfully, but these errors were encountered: