google-code-export / gwt-platform

Automatically exported from code.google.com/p/gwt-platform
1 stars 0 forks source link

Problem using multiple Google Analytic accounts #454

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Create two google analytics accounts.
2. Setup one via binding:
bindConstant().annotatedWith(GaAccount.class).to("UA-XXXXXXX-X");
3. Add the additional account via:
analtyics.addAccount( "myTracker", "UA-55555555-1" );
4. Make a call to:
analytics.trackPageview( "myTracker", "specialPage" )

What is the expected output? What do you see instead?
Using firebug, there should be two requests that have the param utmac set to 
the account setup via binding and the account setup with addAccount. What is 
happening is the second account is being passed as "   userAccount   ".

What version of the product are you using? On what operating system?
gwtp 1.0.2; windows 7 x64

Please provide any additional information below.
The account registered via binding works without any issues.

Original issue reported on code.google.com by ag...@redesetgrow.com on 11 Nov 2013 at 1:47