Support Board
Date/Time: Sun, 08 Jun 2025 00:22:59 +0000
Post From: How access the binary from sc.MakeHTTPBinaryRequest()
[2023-02-15 15:19:45] |
User907968 - Posts: 840 |
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 } |