flawiddsouza / Restfox

Offline-First Minimalistic HTTP & Socket Testing Client for the Web & Desktop

Home Page:https://restfox.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Incorrect query parameters

cj-marius-svarlys opened this issue · comments

Hi, faced this specific issue. For example if I set environment params with these values:
image
Now after calling a request it fails and checking Request tab in response I see that client_secret value is changed by "25" added in between:
image

Using version: Version 0.2.1 (0.2.1)

image
Hi, this is not a bug. It's just url encoded. It will be decoded correctly by your http server if what you meant to send was %40. If you meant to send @ as in M4v@403d, you should just use @ instead of %40. It will be automatically url encoded to %40.

Closing this issue for now, as there's no reply. Let me know if there's still an issue after following the above steps.