I see intermittent issues during the the whole summer in 0.8 saving appdata (several values in one request). It was apparently fixed during August but then apparently broken in September. Please note - no changes in my code during this period.
The bug is intermittent. Very annoying, why does it work without any problem on all other OS containers. Why there are so many bugs on myspace platform? Maybe you guys should outsource the OS part to some company which has better undertsnading of the OS. No offence but this is the feeling I get developing on myspace container for more than a year and comparing it to other OS implementations (orkut, hi5, friendster) where it is just working fine.
var json1 = gadgets.json.stringify(data1);
var json2 = gadgets.json.stringify(data2);
var req = opensocial.newDataRequest();
req.add(req.newUpdatePersonAppDataRequest("VIEWER", "param1", json1));
req.add(req.newUpdatePersonAppDataRequest("VIEWER", "param2", json2));
req.send(callback);
Only param2 is saved (the last one) and param1 is not. If I switch last 2 lines in the code - only param1 is saved (and i have an old value for param2 fetching it). Why is that? Again - it's intermittent, so obviously there is some bug there.
please fix