Login Page - Create Account

Support Board


Date/Time: Fri, 29 Nov 2024 12:31:46 +0000



Post From: How access the binary from sc.MakeHTTPBinaryRequest()

[2023-02-15 15:19:45]
User907968 - Posts: 824
First question, does the response actually contain anything?


if (sc.HTTPBinaryResponse.GetArraySize() == 0)
return;

for (auto i = 0; i < sc.HTTPBinaryResponse.GetArraySize(); ++i)
{
auto c = sc.HTTPBinaryResponse[i];

// do some stuff here maybe write the char to the message log
// or inspect the data with your debugger attached

}