I\'m trying to create a script to capture data via HTTP POST from Ejunkie. When someone makes a purchase on ejunkie, they can transmit all the order data via HTTP POST to a
Could try something like this? Also you might look @ this thread: doPost(e) does not return parameters but doGet(e) does?
function doPost(e) { if(typeof e !== 'undefined') return ContentService.createTextOutput(JSON.stringify(e.parameter)); }