The adapter will report the text body of a successful HTTP request to the specified url, or return an error if the response status code is greater than or equal to 400.

Input: None

Returns: String representation of the http response.

Example: Basic HttpTask

{"httpTask": {"url": "https://mywebsite.org/path"} }

Example: HttpTask example with headers

{ "httpTask": { "url": "https://mywebsite.org/path", "method": "METHOD_POST", "headers": [ { "key": "MY_HEADER_KEY", "value": "MY_HEADER_VALUE" } ], "body": "{\"MY_BODY_KEY\":\"MY_BODY_VALUE\"}" } }

Implements

Constructors

  • Constructs a new HttpTask.

    Parameters

    • Optionalproperties: IHttpTask

      Properties to set

    Returns OracleJob.HttpTask

Properties

body: string

A stringified body (if any) to add to this HttpTask.

headers: IHeader[]

A list of headers to add to this HttpTask.

The type of HTTP request to make.

url: string

A string containing the URL to direct this HTTP request to.

Methods

  • Converts this HttpTask to JSON.

    Returns { [k: string]: any }

    JSON object

  • Creates a new HttpTask instance using the specified properties.

    Parameters

    • Optionalproperties: IHttpTask

      Properties to set

    Returns OracleJob.HttpTask

    HttpTask instance

  • Decodes a HttpTask message from the specified reader or buffer.

    Parameters

    • reader: Uint8Array<ArrayBufferLike> | Reader

      Reader or buffer to decode from

    • Optionallength: number

      Message length if known beforehand

    Returns OracleJob.HttpTask

    HttpTask

    If the payload is not a reader or valid buffer

    If required fields are missing

  • Decodes a HttpTask message from the specified reader or buffer, length delimited.

    Parameters

    • reader: Uint8Array<ArrayBufferLike> | Reader

      Reader or buffer to decode from

    Returns OracleJob.HttpTask

    HttpTask

    If the payload is not a reader or valid buffer

    If required fields are missing

  • Encodes the specified HttpTask message. Does not implicitly verify messages.

    Parameters

    • message: IHttpTask

      HttpTask message or plain object to encode

    • Optionalwriter: Writer

      Writer to encode to

    Returns Writer

    Writer

  • Encodes the specified HttpTask message, length delimited. Does not implicitly verify messages.

    Parameters

    • message: IHttpTask

      HttpTask message or plain object to encode

    • Optionalwriter: Writer

      Writer to encode to

    Returns Writer

    Writer

  • Creates a HttpTask message from a plain object. Also converts values to their respective internal types.

    Parameters

    • object: { [k: string]: any }

      Plain object

    Returns OracleJob.HttpTask

    HttpTask

  • Gets the default type url for HttpTask

    Parameters

    Returns string

    The default type url

  • Creates a plain object from a HttpTask message. Also converts values to other types if specified.

    Parameters

    • message: OracleJob.HttpTask

      HttpTask

    • Optionaloptions: IConversionOptions

      Conversion options

    Returns { [k: string]: any }

    Plain object

  • Verifies a HttpTask message.

    Parameters

    • message: { [k: string]: any }

      Plain object to verify

    Returns string

    null if valid, otherwise the reason why it is not