622
631
* \param app IVLE app to call (such as "fileservice").
623
632
* \param path URL path to make the request to, within the application.
624
633
* \param args Argument object, as described in parse_url and friends.
625
* \param method String; "GET", "POST", "PUT", or "PATCH"
627
637
* Defaults to "application/x-www-form-urlencoded".
629
639
function ajax_call(callback, app, path, args, method, content_type)
632
642
content_type = "application/x-www-form-urlencoded";
633
643
path = app_path(app, path);