Of course, I'll include the images along with the translation this time.

HTTP

Function Declaration

Create/send HTTP requests. Note:

  1. This functionality requires using the online version of UIFlow.
  2. For offline running, it's necessary to add a WiFi connection program to the setup. See WiFi connection program instructions .

HTTP feature illustration

Http Request

  • Creates an HTTP access request with methods GET, POST, DELETE, PUT, PATCH. The URL must be a complete HTTP link address. Headers and Data should be created in a dictionary form. It executes Success upon successful sending and Fail upon failure.

Get Status Code

  • Returns the status code.

Get Data

  • Returns the request data.

Usage Instructions

Send a GET request to Baidu, return data, and print it.

Usage illustration for HTTP request

On This Page