I am trying to access a field in a json object in javascript which has the key \'*\'. The jsonstring looks like this:
{\"parse\": {\"text\": {\"*\":\"text
Try use the index operator on parse.text:
parse.text
var value = object.parse.text["*"];