Hi Thomas:
You need to use signed makerequest() calls to address this issue which will pass a signature your server.
You also need to modify your server code to verify the signature passed in to ensure they match (i.e. this will validate that the request originated from Myspace - assuming the consumer secret has not been compromised).
Please add the following line to the JS code above to make signed requests:
params[gadgets.io.RequestParameters.AUTHORIZATION] = gadgets.io.AuthorizationType.SIGNED;
Chak