I have this request:
url 'https://www.myapi.com/post/?text=%40.gamerboy.0+%40buddythegame+%40monster._.360+%40medoingnothin2000000+%40bryansubz&text_extra=[%7B%22start%22:0,%22end%22:12%22type%22:3%7D]&_signature=_02B4Z6wo01101Lo5vewAAIDCZn3AnH8dm3y6OblAAE5xa2'
response2 = requests.post(url, headers=headers, verify=False, proxies=proxies, timeout=10)
But it always failed. When I debug it. I found the URL in request somehow replaced and encoded the chars of [ ]'s to %5B and %5D !
As images below:
https://gyazo.com/bb3e02773067adab61f4309ff1ff64ee
https://gyazo.com/6f714835302948cbf4329bf553c33898
How to prevent that from happening?
Tried, to use payload, but failed attempt.
Please advise, Thank you //henrik