Hello guys i have a very simple Json
{"_status":"ERROR","_message":"Invalid authentication information"}
as you can see its pretty plain I've tried parsing using
Dim parser As JSONParser
parser.Initialize(JsonString)
Dim root As Map = parser.NextObject
Dim _message As String = root.Get("_message")
Dim _status As String = root.Get("_status")
always return error [java.lang.RuntimeException: JSON Array expected.]
and since my json start with a { then its a map but i've tried list too but with no luck !! so anyone can help