close

  
<p> var type = "module";
var description = "The HTTP request object and information on the script and app associated to that request.";

var structure = [
  {
    "name" : "callback",  
    "type" : "function",
    "optional" : true,
    "description" : "The function to call with response object if successful.  If present, automatically causes call to be made asynchronously."
  },
  {
    "name" : "errback",  
    "type" : "function",
    "optional" : true,
    "description" : "The function to call with error object if failure.  If present, automatically causes call to be made asynchronously."
  },
  {
    "name" : "http_timeout",
    "type" : "number",
    "optional" : true,
    "description" : "Number of ms to give the request before throwing (or calling errback with) a timeout error"
  }
];

/*
.concat(acre.require("obj_urlfetch_options").structure.map(function(o){
  o.name = "http_" + o.name;
  return o;
}))
*/

 </p>

Comments

Hide