As a beginner, I am attempting to execute a basic HTTP post in JS using a Firefox extension.
I'm encountering an issue where the parameters are not being passed as expected:
var params = "a=1&b=2&c=3"
req.open('POST', 'http://www.mywebsite.com/');
req.send(params);
If you have any insights on what could be causing this problem, I would greatly appreciate your assistance. Thank you.