Image beacon will be processed at Adobe server? | Community
Skip to main content
Level 4
August 2, 2019
Solved

Image beacon will be processed at Adobe server?

  • August 2, 2019
  • 5 replies
  • 3732 views

Hi Team,

I firing image beacon using Ensighten built in method as shown below.

Bootstrapper.imageRequest("//met2.hp.com/b/ss/hphqglobal,hpi-hphqelite1.0/1/JS-1.4.4/s"+a+"?s.eVar81="+eVar81);

I am able to see the image beacon firing on the page as shown in the attachment, but I am not seeing the data in the workspace. Please reply asap.

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

Hey Dinesh,

The syntax for s.eVar is incorrect. This type of variables should be passed to the collection server as "v" query string parameter.

Consider the following syntax instead:

Bootstrapper.imageRequest("//met2.hp.com/b/ss/hphqglobal,hpi-hphqelite1.0/1/JS-1.4.4/s"+a+ "?v81="+eVar81);

5 replies

Urs_Boller
Community Advisor
Community Advisor
August 2, 2019

doesn't look bad, but it is sent to "met2.hp.com"

do you have cname enabled or anything to forward the request to adobe?

Andrey_Osadchuk
Andrey_OsadchukAccepted solution
Level 10
August 2, 2019

Hey Dinesh,

The syntax for s.eVar is incorrect. This type of variables should be passed to the collection server as "v" query string parameter.

Consider the following syntax instead:

Bootstrapper.imageRequest("//met2.hp.com/b/ss/hphqglobal,hpi-hphqelite1.0/1/JS-1.4.4/s"+a+ "?v81="+eVar81);

Urs_Boller
Community Advisor
Community Advisor
August 2, 2019

Thanks Andrey Osadchuk​ for pointing on the eVar, guess I stopped checking after the domain...

Level 4
August 3, 2019

Thank you @Andrey , its working now. I changed s.eVar81 to v81.

Level 4
August 3, 2019

Hi Andrey,

if we pass "#" in the products variable, after "#' values are getting truncated. See below example.

products = "abcd#uzzz";

Bootstrapper.imageRequest("//met2.hp.com/b/ss/hphqglobal,hpi-hphqelite1.0/1/JS-1.4.4/s"+a+ "?products="+products);

In the image beacon,we are seeing only values before #, nothing after #.

products = abcd.

Please help me here.