Forum Discussion

subhalaxmi's avatar
subhalaxmi
Visitor
10 years ago

Write To Temp File

Hi All

I want to write my jsonstring to tmp file.

<code>
WriteAsciiFile("tmp:/example.txt",msg.GetString())
text=ReadAsciiFile("tmp:/example.txt")
jsonData = ParseJSON(text)
print jsonData

</code>

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.

4 Replies

  • 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 .
  • renojim's avatar
    renojim
    Community Streaming Expert
    You read your tmp file into text, so
    print text

    -JT
  • Thnaks guys.I solved it by replacing starting characters from jsonstring.

Recent Discussions