Lines Matching refs:HTTP

1 # HTTP Data Request
5 An application can initiate a data request over HTTP. Common HTTP methods include **GET**, **POST**…
9 The HTTP request function is mainly implemented by the HTTP module.
19 | createHttp() | Creates an HTTP request. |
20 | request() | Initiates an HTTP request to a given URL. |
21 | requestInStream()<sup>10+</sup> | Initiates an HTTP network request to a given URL and …
22 | destroy() | Destroys an HTTP request. |
23 | on(type: 'headersReceive') | Registers an observer for HTTP Response Header events…
24 | off(type: 'headersReceive') | Unregisters the observer for HTTP Response Header eve…
25 | once\('headersReceive'\)<sup>8+</sup> | Registers a one-time observer for HTTP Response Heade…
26 …</sup> | Registers an observer for events indicating receiving of HTTP streaming responses…
27 …sup> | Unregisters the observer for events indicating receiving of HTTP streaming responses…
28 … | Registers an observer for events indicating completion of receiving HTTP streaming responses…
29 … | Unregisters the observer for events indicating completion of receiving HTTP streaming responses…
30 … | Registers an observer for events indicating progress of receiving HTTP streaming responses…
31 … | Unregisters the observer for events indicating progress of receiving HTTP streaming responses…
32 …11+</sup> | Registers an observer for events indicating progress of sending HTTP requests. |
33 …1+</sup> | Unregisters the observer for events indicating progress of sending HTTP requests.|
39 …n()** to subscribe to HTTP response header events. This API returns a response earlier than the re…
40 …nitiate a network request. You need to pass in the URL and optional parameters of the HTTP request.
42 6. Call **off()** to unsubscribe from HTTP response header events.
50 // Each httpRequest corresponds to an HTTP request task and cannot be reused.
52 …n for the HTTP Response Header event, which is returned earlier than the result of the HTTP reques…
98 // data.result carries the HTTP response. Parse the response based on service requirements.
101 … // data.header carries the HTTP response header. Parse the content based on service requirements.
108 // Unsubscribe from HTTP Response Header events.
121HTTP response header events as well as events indicating receiving of HTTP streaming responses, pr…
122 …nitiate a network request. You need to pass in the URL and optional parameters of the HTTP request.
132 // Each httpRequest corresponds to an HTTP request task and cannot be reused.
134 // Subscribe to HTTP response header events.
138 // Subscribe to events indicating receiving of HTTP streaming responses.
148 // Subscribe to events indicating completion of receiving HTTP streaming responses.
152 // Subscribe to events indicating progress of receiving HTTP streaming responses.
181 // Unsubscribe from HTTP Response Header events.
183 // Unregister the observer for events indicating receiving of HTTP streaming responses.
185 // Unregister the observer for events indicating progress of receiving HTTP streaming responses.
187 // Unregister the observer for events indicating completion of receiving HTTP streaming responses.