makeRequest has stopped working for me for my server's URL at the moment as well. As all I get is an undefined internalError I have no idea what is happening.
As of 2 hours ago my app was working just fine and now, no matter how many times I try, I am receiving an internalError. I changed nothing.
Edit: I have determined that it has something to do with the optional parameters, most likely the fact that it's METHOD=POST since we both have that. If I just pass {} for params it works. Will test more shortly. This is what I have now and what worked just a few hours ago:
params[gadgets.io.RequestParameters.POST_DATA] = post_data;
params[gadgets.io.RequestParameters.METHOD] = gadgets.io.MethodType.POST;
params[gadgets.io.RequestParameters.AUTHORIZATION] = gadgets.io.AuthorizationType.SIGNED;
EDIT again: Just found this:
Forum Post It's very possible that your server is too slow. Will test mine and see if I changed something on the server to take longer than 3 seconds.
EDIT 3: I just tested my server and made it respond instantly, no issues. That's definitely what it is. Good to know.