I had no problems with it till now.
This is the url:
https://admin.appnext.com/offerWallApi.aspx?id=ff802456-796b-4645-9b11-b3b2d6bc4374&cnt=5&type=json
Now, if I call this like
local appNextURL = "https://admin.appnext.com/offerWallApi.aspx" local appNextID = "ff802456-796b-4645-9b11-b3b2d6bc4374" local cnt=1 local params = {} params.body = "id=" .. appNextID .. "&cnt=" .. cnt .. "&type=json" network.request(appNextURL, "GET", networkListenerAppNext, params)
I am getting a response as if there where no parameters in the request.
But if I put the parameters in the url, all is fine:
local appNextURL = "https://admin.appnext.com/offerWallApi.aspx?id=ff802456-796b-4645-9b11-b3b2d6bc4374&cnt=5&type=json"
And idea why is that?