Hi All
I want to write my jsonstring to tmp file.
WriteAsciiFile("tmp:/example.txt",msg.GetString())
text=ReadAsciiFile("tmp:/example.txt")
jsonData = ParseJSON(text)
print jsonData
it gives error when on 3rd line.PARSEJSON Unknown Identifier Error.When I am writing the same response in local file and read it only.It is working fine.What to do.Please help me.I need help urgently.
Sounds like the same error you’re having here: viewtopic.php?t=91192
which still suggests that there’s a problem with your JSON string. Any chance you have unicode characters in there that could possibly be throwing off the parser?
But I acould not be able to debug api issue.Can you please tell me where is my tmp file..How can I see that file contents .
You read your tmp file into text, so
print text
-JT
Thnaks guys.I solved it by replacing starting characters from jsonstring.