In the webadmin, when I make a post call in the webadmin for some reason I don't get any GET values.
I'm not crazy right? The GET variable is right there in the URL.
In fact, I'm not getting any data when using a POST.
EDIT:
Also, is it possible to get raw JSON from a request?
print(a_Request.Params['page'], a_Request.URL) local page = a_Request.Params["page"] or "default" local handler = g_Pages[page] or g_Pages.default return handler(a_Request)prints
Code:
nil /webadmin/Secret/Secret%20Project?page=dosomething
In fact, I'm not getting any data when using a POST.
EDIT:
Also, is it possible to get raw JSON from a request?