Support Board
Date/Time: Thu, 10 Jul 2025 07:31:50 +0000
Post From: How access the binary from sc.MakeHTTPBinaryRequest()
[2023-02-15 15:19:45] |
User907968 - Posts: 842 |
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 } |