Random JSON error

Hi there,

Can you please check the below random error while retrieving the user data ,

[trace] IDNET: data complete {“key”:“OnlineUserData”,“jsondata”:"%5Bobject%20Object%5D"}
[Fault] exception, information=SyntaxError: Error #1132: Invalid JSON parse input.–

Thank you

Hi Nik,

It looks like you are trying to send an object instead of a text string.
For example, the following would work.

var gameSave1 = {
    level: 31,
    health: 66,
    inventory: [
            ['healthpotion', 9],
            ['sword', 'beastmode']
    ]
};
idnet.submitUserData('gameSave1', JSON.stringify(gameSave1));
Y8 Games