Hello I am generation a list of image urls from a json file. The problem I have is displaying them.
local json = require('json') local url = 'https://itunes.apple.com/us/rss/topsongs/limit=5/json' local function networkSuccess( event ) data = json.decode(event.response) for key,value in pairs(data.feed.entry) do --print(key,value.label) for k,v in pairs(value['im:image']) do --print(k,v.label) end end end network.request( url, 'GET', networkSuccess )
the images are being loaded from an api and I do not want to save them to a directory, just use them for the moment to display. How to i go about doing this.