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