Expand my Community achievements bar.

Join us at Adobe Summit 2024 for the Coffee Break Q&A Live series, a unique opportunity to network with and learn from expert users, the Adobe product team, and Adobe partners in a small group, 30 minute AMA conversations.
SOLVED

Sending beacon: xhr vs script

Avatar

Level 1

I have AppMeasurement 2.17.0 and it sometimes sends beacons as (1) AJAX POST request and sometimes it dynamically (2) adds <script> to the page (with the same URL as AJAX request) and that results in a GET request.

xhr vs script.png

 

 

 


In case of 1 the data is encapsulated in the request body, and in case of 2 the data is sent in request parameters.

Why is that so, and is it possible to configure it to always send the beacon as AJAX POST?

 

I would like to have it that way, because it makes testing track calls with tools such as Cypress easier. Cypress, for example, is capable only of detecting AJAX requests.

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

This was addressed in another post: https://experienceleaguecommunities.adobe.com/t5/adobe-analytics-questions/difference-between-post-v...

Basically, AppMeasurement itself decides which method to use. As far as I know, there is no user-configurable setting to force AppMeasurement to always use POST.

The next best thing that you can consider is s.useBeacon: https://docs.adobe.com/content/help/en/analytics/implementation/vars/config-vars/usebeacon.html

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

This was addressed in another post: https://experienceleaguecommunities.adobe.com/t5/adobe-analytics-questions/difference-between-post-v...

Basically, AppMeasurement itself decides which method to use. As far as I know, there is no user-configurable setting to force AppMeasurement to always use POST.

The next best thing that you can consider is s.useBeacon: https://docs.adobe.com/content/help/en/analytics/implementation/vars/config-vars/usebeacon.html

Avatar

Level 1
I guess, I simply have to find a way to work around this. Thanks for the clarification.