I can't figure out why may Asp.Net/CSharp code (sorry) tells me an
incoming "makeRequest" is a GET rather than the POST I am sending.
Sending code looks like:

function call(name)
{
        var params = { };
        var postdata = {  "user" : name };
        params[gadgets.io.RequestParameters.CONTENT_TYPE] =
gadgets.io.ContentType.TEXT;
        params[gadgets.io.RequestParameters.METHOD] =
gadgets.io.ContentType.POST;
        params[gadgets.io.RequestParameters.AUTHORIZATION] =
gadgets.io.AuthorizationType.SIGNED;
        params[gadgets.io.RequestParameters.POST_DATA] =
gadgets.io.encodeValues(postdata);
        gadgets.io.makeRequest("http://dvdoctopus.com/do/MySpace.aspx";,
myCallback, params);
}

The app is displaying the expected result, but my web-site-side
logging code in Page_Load() says it is receiving a GET with no
parameters.

I am so confused and frustrated.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Orkut Developer Forum" group.
To post to this group, send email to opensocial-orkut@googlegroups.com
To unsubscribe from this group, send email to 
opensocial-orkut+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/opensocial-orkut?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to