![]() |
OScript API/Built-in Package Index |
The built-in functions in the RestClient class provide the ability to connect to a HTTP server and send get or post with content requests.
The RestClient class offers the following functionality:
The name of the server
The URI
The port to connect to the server
The request timeout in seconds (default 200)
Returns a new RestClient instance, or undefined if an error occured.
Returns a new RestClient instance for HTTPS, or undefined if an error occured.
Adds user and password/cert authentication.
Sends an HTTP delete.
Sends an HTTP get.
Get the current URI.
Sends an HTTP patch.
Sends an HTTP post.
Sends an HTTP post with local file reference to upload with the request.
Sends an HTTP put.
Set the Content-Type HTTP header.
Set the filename where content is written.
Set the URI.
The name of the server
The URI
The port to connect to the server
The request timeout in seconds (default 200)
Returns a new RestClient object.
IP address or domain name of HTTP host.
HTTP connection port, required
The base URI
Request timeout, default 200, min value 15
A new RestClient object or undefined if there was an error constructing the object.
Returns a new RestClient object, one of the certpath, certfile or keyfile parameters is required. Certificate validation disabled.
IP address or domain name of HTTP host.
HTTP connection port, required
The base URI
Request timeout, default 200, min value 15
The path to default certs, if no cert file or keyfile is supplied, this directory will be searched for the apppropriate certificate, on linux usually /etc/ssl/certs, on windows, a default directory must be populated
The path/name of a user supplied certs file, this file must contain a complete certificate chain. use if there is no default cert store or certificate is self-signed
The path/name of a user supplied private key file, used for self-generated keys
A new RestClient object or undefined if there was an error constructing the object.
Adds authentication to the request and sends it if the server returns an authentication required http response.
The username for authentication
The password or certificate for authentication
0 if successful or undefined if an error
Constructs the header using the initialURI and supplied list of parm=value pairs and sends a delete.
Assoc of key value pairs to add to the URL query string (will URL encode if required)
Assoc of key value pairs to add additional fields to the HTTP header
Request return or error with message
Constructs the header using the initialURI and supplied Assoc of parm=value pairs and sends a get.
Assoc of key value pairs to add to the URL query string (will URL encode if required)
Assoc of key value pairs to add additional fields to the HTTP header
Request return or error with message
Constructs the header using the initialURI and supplied Assoc of parm=value pairs and sends a patch.
Assoc of key value pairs to add to the URL query string (will URL encode if required)
String containing patch content, may contain binary data
Length of the body content
Assoc of key value pairs to add additional fields to the HTTP header
Request return or error with message
Constructs the header using the initialURI and supplied Assoc of parm=value pairs and sends a post.
Assoc of key value pairs to add to the URL query string (will URL encode if required)
String containing post content, may contain binary data
Length of the body content
Assoc of key value pairs to add additional fields to the HTTP header
Assoc of key value pairs to send as HTTP POST parameters. NOTE: Should NOT be URL escaped. This can only be specified if the body is empty and length is 0.
Request return or error with message
Sends the given file as a HTTP multipart message
Assoc of key value pairs to add to the URL query string (will URL encode if required)
The fully qualified path to the local file that is to be uploaded
The file name to be used for the HTML form element (may be different than the local filename)
The HTML form element name associated with the file
The content or MIME type of the file
Assoc of key value pairs to add additional fields to the HTTP header
Assoc of key value pairs to send as HTTP multipart POST parameters. NOTE: Should NOT be URL escaped.
Request return or error with message
Constructs the header using the initialURI and supplied Assoc of parm=value pairs and sends a put.
Assoc of key value pairs to add to the URL query string (will URL encode if required)
String containing put content, may contain binary data
Length of the body content
Assoc of key value pairs to add additional fields to the HTTP header
Request return or error with message
Set the Content-Type HTTP header for all requests sent by this client.
The value of the header
0 or undefined
Allows larger content from the server to be written to a file instead of returning it in the Assoc.
String containing the file path/name
0 or undefined
Sets the URI to a new value.
The URI
0 or undefined
Copyright © 2019 OpenText Corporation. All rights reserved. |