0
votes
1answer
22 views

Requestiong JSON infromation from API. Cornoa

Im trying to make an app where i will gather information from a json api http://pool-x.eu/api, and print information easly bo choosing paramter. What is the easiest way to print each of the ...
0
votes
1answer
347 views

corona sdk state saving using json to return variables

Hi I am building an app using corona sdk which is an interactive ebook. What I need to be able to do is save current variables and then load an external file on startup containing the scene the user ...
1
vote
1answer
107 views

using XML in Corona to link captured images with recorded audio

I am working on a camera&recorder project in Corona which executes as follows: Upon touch, the camera takes picture, and audio starts recording. Upon next touch: the previous picture is saved ...
1
vote
1answer
522 views

equivalent CURL for Lua, (Django API Json to Lua Json) POST method

I have a Django that having API for JSON, and I want it to get it in my Lua (Corona SDK) project. if I CURL my Django project. curl -l -X POST -d "message=getstrings" ...
0
votes
1answer
815 views

error in json in corona lua

hi i have found a tutorial on how to use post json in lua. here is the code : http = require("socket.http") crypto = require("crypto") ltn12 = require("ltn12") url = require("socket.url") local json ...
1
vote
1answer
1k views

Corona SDK: parsing JSON

I have a JSON string which I can parse with Corona SDK. What I could not figure out yet is how to use the return value and assign it to a variable which I can access later? I get the JSON string in ...