I want to join multiple clauses for a single request.
Eg.
headers[“Content-Type”] = “application/json”
local params = {}
params.headers = headers
------------------------------------------------------------------------------
local clauseTabel=
{
NumComments = 1
}
local query = “?where=” … url.escape(json.encode(clauseTabel))
query=query…"?limit=20"
------------------------------------------------------------------------------
network.request( baseUrl…“Stories”…query, “GET”, networkListener, params)
of course this is just my estimation on how to enjoin where clause & limit, it’s not working, am not finding any documentation on it, plz help.