Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
CURL.ReceiveText
Receives raw data on a connection as text.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
CURL | 7.2 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
Parameters
Parameter | Description | Example | Flags |
---|---|---|---|
curl | The CURL session handle. | $curl | |
BytesToRead | Maximum number of bytes to read. | 1000 | |
Encoding | The text encoding for result. Default is UTF-8. Possible encoding names: ANSI, ISO-8859-1, Latin1, Mac, Native, UTF-8, DOS, Hex, Base64 or Windows. More listed in the FAQ. |
"UTF8" | Optional |
Result
Returns text or error.
Description
Receives raw data on a connection as text.This function receives raw data from the established connection. You may use it together with SendData to implement custom protocols using libcurl. This functionality can be particularly useful if you use proxies and/or SSL encryption: libcurl will take care of proxy negotiation and connection set-up.
BytesToRead is the maximum amount of data you want to read now. The function returns the text read, which can be less than requested.
To establish the connection, set OptionConnectOnly = true before calling Perform. Note that ReceiveData does not work on connections that were created without this option.
The call will return CURLE_AGAIN if there is no data to read - the socket is used in non-blocking mode internally. When CURLE_AGAIN is returned, wait for data to arrive.
Wait on the socket only if ReceiveData returns CURLE_AGAIN. The reason for this is libcurl or the SSL library may internally cache some data, therefore you should call ReceiveData until all data is read which would include any cached data.
Furthermore if you wait on the socket and it tells you there is data to read, ReceiveData may return CURLE_AGAIN if the only data that was read was for internal SSL processing, and no other data is available.
On success, sets error code to CURLE_OK (0) and returns the text.
On failure, returns zero and error code is set to the appropriate error code.
The function may return CURLE_AGAIN. In this case, use your operating system facilities to wait until data can be read, and retry.
Reading exactly 0 bytes indicates a closed connection.
If there's no socket available to use from the previous transfer, this function returns CURL_EUNSUPPORTED_PROTOCOL.
Please use CURL.ErrorCode to query error after you used this function.
Examples
Loop and read text from socket:
Set Variable [$received; Value:""]
Loop
Pause/Resume Script [Duration (seconds): ,1]
Set Variable [$r; Value:MBS( "CURL.ReceiveText"; $curl; 100000; "UTF-8")]
Set Variable [$errorCode; Value:MBS( "CURL.ErrorCode"; $curl)]
If [GetAsNumber ( $errorCode ) = 81]
#wait
Else If [GetAsNumber ( $errorCode ) = 0]
#got some data
Set Variable [$received; Value:$received & $r]
Exit Loop If [$r = ""]
Else
#error
Exit Loop If [1]
End If
End Loop
Set Variable [$received2; Value:MBS( "Text.ReplaceNewline"; $received; 1)]
Set Field [CURL Low Level Sockets::Data Received; $received2]
See also
- CURL.ErrorCode
- CURL.ReceiveData
- CURL.SetOptionConnectOnly
- Socket.SSL.Connect
- Socket.SSL.Initialize
- Text.ReplaceNewline
Release notes
- Version 7.2
- Added CURL.ReceiveData, CURL.ReceiveText, CURL.SendData and CURL.SendText to send data over a CURL connected socket.
Example Databases
Blog Entries
This function checks for a license.
Created 27th March 2017, last changed 9th November 2021