If usePlugins
is enabled, the doPlugins()
function runs just before AppMeasurement compiles and sends a hit to Adobe. Enable this variable if you use the doPlugins()
function.
onBeforeEventSend
callback using the Web SDKWhile the Web SDK does not have a boolean to handle the execution of additional logic before data is sent to Adobe, you can register the onBeforeEventSend
callback to modify data. See Modifying events globally in the Web SDK documentation for more information.
There is not a dedicated field in the Adobe Analytics extension to use this variable. Use the custom code editor, following AppMeasurement syntax.
The s.usePlugins
variable is a boolean that determines if AppMeasurement calls the doPlugins()
function. Its default value is false
. Set this variable to true
if you use the doPlugins()
function in your implementation.
s.usePlugins = true;