Reading/Replicating the Payload (HTTP request) via Launch | Community
Skip to main content
New Participant
March 1, 2023
Question

Reading/Replicating the Payload (HTTP request) via Launch

  • March 1, 2023
  • 1 reply
  • 630 views

Hi!

I have a question for me and the analytics team. Whenever an order is placed, Adobe Launch will identify that and send e beacon with all relevant information. We want to store this information (full payload / http request) for later use.

I was hoping Adobe Launch could help me read or replicate the payload on the client-side. The question is basically, are there a feature or function in Adobe Analytics that can help me out?

Attached image shows an example for the Request URL I would need to identify/read/replicate somehow, from the browser.

/F



 




 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

1 reply

yuhuisg
New Participant
March 1, 2023

By itself, Adobe Launch (or what is called Adobe Experience Platform (AEP) Tags, nowadays) doesn't really send those network requests. Rather, Launch loads the necessary JavaScript, in this case, the Adobe Analytics' AppMeasurement.js, and that latter code sends the network requests.

I don't know of any client-side method for capturing a user's browser network requests to send somewhere else. Perhaps instead of recording AA's network request, you could record the contents of AA's "s" object, since the "s" object's contents (i.e. the eVars, props, etc) would contain the information that is ultimately reported in AA. You can use https://experienceleague.adobe.com/docs/analytics/implementation/vars/functions/registerposttrackcallback.html?lang=en for that.