How can I get a param value from a 'application/x-www-form-urlencoded' request?
Like this response:
param1=value1¶m2=value2
How can I do something like above?
var valueOfParam1 = request.body.params['param1']
How can I get a param value from a 'application/x-www-form-urlencoded' request?
Like this response:
param1=value1¶m2=value2
How can I do something like above?
var valueOfParam1 = request.body.params['param1']
here is a quick solution done by someone here on stackoverflow check his link
https://stackoverflow.com/a/1131651/8594737
You can also check my library tho it serves for a different purpose, but might be useful to understand and explore incase of a more complex scenario
https://github.com/zico4reel/conversionTracker
I hope these links are helpful