I'm using the AS3 SWC from Flex and trying to save some app data as follows:
var dr:MSDataRequest = opensocial.newDataRequest() as MyOpenSpace.MSDataRequest;
dr.add(dr.newUpdatePersonAppDataRequest('VIEWER', "key","value"));
dr.send(onUpdateData);
but this always seems to return an error in the response. I'm assuming this has something to do with this request using PUT, which apparently Flash does not provide unless you're using a server based proxy...?
Does this mean I'm SOL if I want to use Flex and the app data store? Or is there a workaround I can use to make this work?
Thanks...
William.