I am seeing this as well.
var url = "http://www.mogreet.com/send/vip/45/";
var params = {};
params[gadgets.io.RequestParameters.METHOD] = gadgets.io.MethodType.POST;
params[gadgets.io.RequestParameters.CONTENT_TYPE] = gadgets.io.ContentType.DOM;
params[gadgets.io.RequestParameters.POST_DATA] = { foo : 'bar' };
//params[gadgets.io.RequestParameters.POST_DATA] = sendFormData;
gadgets.io.makeRequest(url, makeRequest_Callback, params);
The result returned to the browser is the error page from the Myspace web server:...
<html> <head> <title>Runtime Error</title>
<style>
body {font-family....etc.
If I change the POST to GET (nothing else changes) it does not crash, but of course I lose my post variables.
Any thoughts?
ATR