Solved
Hard coded server call structure
For a particular server call we are manually constructing the image request string. Have a couple questions on the query parameters.
- "t" - this is supposed to be a UNIX or ISO-8601 format timestamp. The calls I normally see have a format of "31/4/2017 7:34:30 3 240". Can I use a format of "2017-05-31T11:54:32.090Z" instead? That is the result when I use the toISOString() JavaScript function, which is nice and simple.
- "g" - is this required? I haven't included it in my testing, and the data is showing up in reporting. It's not a problem to add, and I can limit it to 250 characters, but I'm trying to keep the code as simple and quick as possible so prefer not to include anything we don't really need.
- "vid" - is this required? We don't use a custom visitor id, so is this ok to not include? I can put in logic to check for the s_fid or s_vi cookies if needed. Does this affect any session or visitor identification at the Adobe server side, or do you use the cookies that get sent along with the server call for that purpose?
- "ce" - is this required?
- "AQE" - is this required?
- Any other required parameters?