Skip to main content

Binary Reporting (ReportBinary)

AndroidiOSWindows
If you are using Unreal Engine, see Unreal Engine SDK's ReportBinary.
caution

Businesses must not report personal information or other sensitive data.

Binary Report (ReportBinary)

Supported channel: INTL

Function Definition

public static void ReportBinary(string eventName, string data, int length, string specificChannel);

Parameter Details

ParametersTypeExplanation
eventNameStringEvent
dataStringBinary data
lengthintLength of data
specificChannelStringSpecify channel
1. If no value is provided, an empty string will default to reporting to the initialized channel, that is, the channel configured to be reported in INTLConfig.ini; see Access Guidelines
2. Report to a specific channel, for example "Facebook".
3. Report to multiple channels, separated by a comma "," such as "Facebook,Firebase".

Sample Code

string data = ReadFile(fileName);
INTLAPI.ReportBinary("INTL_BINARY_TEST", data, data.Length, "");