I can get the current page URL in a Firefox extension but I'd like to get the POST data too. Firefox stores it somewhere to send it again on refresh. How can I get it from my extension ?

I could probably capture each request like Firebug, but I'd rather avoid that and get the POST data only on demand.

I'm using the add-on SDK (jetpack). I tried the code from this page in my main script:

{Cc,Ci} = require("chrome");

wm = Cc["@mozilla.org/appshell/window-mediator;1"].getService(Ci.nsIWindowMediator);
mainWindow = wm.getMostRecentWindow("navigator:browser");

history = mainWindow.gBrowser.selectedBrowser.webNavigation.sessionHistory;

postdata = history.getEntryAtIndex(history.index-1,false).QueryInterface(Ci.nsISHEntry).postData;

postdata.QueryInterface(Ci.nsISeekableStream).seek(Ci.nsISeekableStream.NS_SEEK_SET, 0);
stream = Cc["@mozilla.org/binaryinputstream;1"].createInstance(Ci.nsIBinaryInputStream);
stream.setInputStream(postdata);
postBytes = stream.readByteArray(stream.available());
poststr = String.fromCharCode.apply(null, postBytes);

console.log(poststr);

But it fails at

postdata.QueryInterface(Ci.nsISeekableStream).seek(Ci.nsISeekableStream.NS_SEEK_SET, 0);

Because postdata is null (TypeError).

I also tried this method in a content script attached to the active tab, but it fails with a permission denied while getting Components.classes.

link|improve this question
2  
This works fine for me (I shortened mainWindow.gBrowser.selectedBrowser.webNavigation.sessionHistory into mainWindow.gBrowser.sessionHistory but otherwise it's the same). Are you sure that the history entry you are looking at has POST data associated with it? Note that webservers will often redirect after receiving POST data - in that case the current history entry won't have any POST data (and you won't see a warning if your try to reload the page). – Wladimir Palant Jul 11 '11 at 6:40
The current page has POST data (I hit refresh and the dialog shows up). But actually, this code retrieves the POST data of the last page, not the current one. I fixed this by simply removing the -1. Thank you for your help. Knowing this code works helped a lot. – Michaël Witrant Jul 11 '11 at 20:05
feedback

1 Answer

up vote 2 down vote accepted

This code retrieves the POST data of the last page, not the current one.

I changed history.index-1 to history.index and it works.

link|improve this answer
Hah! Nothing like an off-by-one error ;) – canuckistani Jul 16 '11 at 3:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.