Skip to content

HTTP

Create HTTP object

  • 1- Right click in any blueprint graph to open search box.
  • 2- Search by InternetProtocolSubsystem.
  • 3- Search by CreateHTTPObject from InternetProtocolSubsystem node.
  • Image title
  • Image title

Nodes


1- Construct HTTP

  • Construct HTTP.
  • Must be called before use any http function.
  • Image title

2- Is Valid

  • Check if the http was built and is valid.
  • Image title

3- Reset

  • Shutdown http module.
  • ConstructHTTP must be called again before use any node.
  • Image title

4- Set URL

  • Set url.
  • Image title

5- Get URL

  • Get url.
  • Image title

6- Encode URL

  • Encode url to ANSII.
  • Image title

7- Decode URL

  • Decode url from ANSII.
  • Image title

8- Set Verb

  • Set request metod.
  • GET, POST, PUT, PATCH, DELETE, COPY, HEAD, OPTIONS, LINK, UNLINK, LOCK, UNLOCK, PROPFIND, VIEW.
  • Image title

9- Get Verb

  • Get request metod.
  • Image title

10- Set Parameters

  • Set url parameters.
  • Image title

11- Get Parameter

  • Get get parameter value by name.
  • Image title

12- Get All Parameters

  • Get all url parameters.
  • Image title

13- Append to Header

  • Add headers.
  • Reseting headers you need to call node Reset and reconstruct http.
  • Image title

14- Get Header

  • Get header value by name.
  • Image title

15- Get Header

  • Get all headers.
  • Image title

16- Set Content As String

  • Sets the content of the request as a string encoded as UTF8.
  • Image title

17- Set Content

  • Sets the content of the request (optional data). Usually only set for POST requests.
  • Image title

18- Get Content

  • Get content of the request.
  • Image title

19- Get Content Lenght

  • Get content size in bytes.
  • Image title

20- Get Content Type

  • Get type of content.
  • Image title

21- Set Timeout

  • Set request timeout.
  • Image title

22- Get Timeout

  • Get request timeout.
  • Image title

23- Clear Timeout

  • Reset timeout.
  • Image title

24- Process Request

  • Called to begin processing the request.
  • Image title

25- Cancel Request

  • Called to cancel a request that is still being processed.
  • Image title

26- Tick Request

  • Use to tick request
  • Image title

Events

  • Events can be called or assigned without construct websocket.

1- On Completed

  • Delegate called when the request is complete.
  • Image title

2- On Progress

  • Delegate called to update the request/response progress.
  • Image title

3- On Will Retry

  • Delegate called when the request will be retried.
  • Image title