Hello I am trying to attach custom dimension while sending events to Google Analytics using NodeJS.
I am using universal analytics npm package.
When I am sending only one custom dimension it is working fine, but the problem is while setting more than one custom dimensions only the first custom dimension is getting tracked.
visitor.set("cd1", <value>);
visitor.set("cd2", <value>);
visitor.event(params).send();
Only value of cd1 is reflecting. Any solution?