Skip Menu |

This queue is for tickets about the WWW-Analytics-MultiTouch CPAN distribution.

Report information
The Basics
Id: 77446
Status: resolved
Priority: 0/
Queue: WWW-Analytics-MultiTouch

People
Owner: Nobody in particular
Requestors: amazingsulabh [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: (no value)
Fixed in: (no value)



Subject: module is not working fine and throwing errors
While i am running this script, which is given on CPAN #!/usr/bin/perl -w use strict; use WWW::Analytics::MultiTouch; use Net::Google::Analytics::DataFeed; my $username = 'sandeep@autoworldindia.com'; my $password = '********'; my $analytics_id = '*******'; #Simple, all-in-one approach WWW::Analytics::MultiTouch->process(user => "$username", pass => "$password", id => "$analytics_id", start_date => '2010-01-01', end_date => '2010-02-01'); # Or step by step my $mt = WWW::Analytics::MultiTouch->new(user => $username, pass => $password, id => $analytics_id); $mt->get_data(start_date => '2012-01-01', end_date => '2012-02-01'); $mt->summarise(window_length => 45); $mt->report(filename => 'report-45day.xls'); $mt->summarise(window_length => 30); $mt->report(filename => 'report-30day.xls'); It is giving error in both cases given in script. while i comment second method it gives error like this. Can't use string ("user") as a HASH ref while "strict refs" in use at /usr/lib/perl5/site_perl/5.8.8/WWW/Analytics/MultiTouch.pm line 951. while i comment first method it gives error like this. Can't locate object method "data_feed" via package "Net::Google::Analytics" at /usr/lib/perl5/site_perl/5.8.8/WWW/Analytics/MultiTouch.pm line 95. Please correct me if i am mistaken in code. Thanks in advance. i am using perl version 5.10.1 and CentOS-5
Subject: gapi.pl
#!/usr/bin/perl -w use strict; use WWW::Analytics::MultiTouch; use Net::Google::Analytics::DataFeed; my $username = 'sandeep@autoworldindia.com'; my $password = '*********'; my $analytics_id = '*******'; #Simple, all-in-one approach # WWW::Analytics::MultiTouch->process(user => "$username", # pass => "$password", # id => "$analytics_id", # start_date => '2010-01-01', # end_date => '2010-02-01'); # Or step by step my $mt = WWW::Analytics::MultiTouch->new(user => $username, pass => $password, id => $analytics_id); $mt->get_data(start_date => '2012-01-01', end_date => '2012-02-01'); $mt->summarise(window_length => 45); $mt->report(filename => 'report-45day.xls'); $mt->summarise(window_length => 30); $mt->report(filename => 'report-30day.xls');
Subject: Re: [rt.cpan.org #77446] module is not working fine and throwing errors
Date: Sat, 26 May 2012 20:47:26 +0930
To: bug-WWW-Analytics-MultiTouch [...] rt.cpan.org
From: Jon Schutz <jon.schutz [...] youramigo.com>
Appears to be a documentation error. Use it like this: WWW::Analytics::MultiTouch->process({ user => "$username", pass => "$password", id => "$analytics_id", start_date => '2010-01-01', end_date => '2010-02-01' }); Regards, -- Jon Schutz CTO, YourAmigo Ltd 53 Gilbert St Adelaide SA 5000 Ph: +61 8 82119211 Fax: +61 8 8211 6356 http://www.youramigo.com On 26/05/12 20:27, S.Joe via RT wrote: Show quoted text
> Sat May 26 06:57:06 2012: Request 77446 was acted upon. > Transaction: Ticket created by amazingsulabh > Queue: WWW-Analytics-MultiTouch > Subject: module is not working fine and throwing errors > Broken in: (no value) > Severity: Normal > Owner: Nobody > Requestors: amazingsulabh@gmail.com > Status: new > Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> > > > While i am running this script, which is given on CPAN > > #!/usr/bin/perl -w > use strict; > > use WWW::Analytics::MultiTouch; > use Net::Google::Analytics::DataFeed; > > my $username = 'sandeep@autoworldindia.com'; > my $password = '********'; > my $analytics_id = '*******'; > #Simple, all-in-one approach > WWW::Analytics::MultiTouch->process(user => "$username", > pass => "$password", > id => "$analytics_id", > start_date => '2010-01-01', > end_date => '2010-02-01'); > > # Or step by step > > my $mt = WWW::Analytics::MultiTouch->new(user => $username, > pass => $password, > id => $analytics_id); > > $mt->get_data(start_date => '2012-01-01', > end_date => '2012-02-01'); > > $mt->summarise(window_length => 45); > $mt->report(filename => 'report-45day.xls'); > > $mt->summarise(window_length => 30); > $mt->report(filename => 'report-30day.xls'); > > > > It is giving error in both cases given in script. > > while i comment second method it gives error like this. > Can't use string ("user") as a HASH ref while "strict refs" in use at > /usr/lib/perl5/site_perl/5.8.8/WWW/Analytics/MultiTouch.pm line 951. > > while i comment first method it gives error like this. > Can't locate object method "data_feed" via package > "Net::Google::Analytics" at > /usr/lib/perl5/site_perl/5.8.8/WWW/Analytics/MultiTouch.pm line 95. > > > Please correct me if i am mistaken in code. > Thanks in advance. > > i am using perl version 5.10.1 and CentOS-5
From: amazingsulabh [...] gmail.com
On Sat May 26 07:17:43 2012, jon.schutz@youramigo.com wrote: Show quoted text
> Appears to be a documentation error. Use it like this: > > WWW::Analytics::MultiTouch->process({ > user => "$username", > pass => "$password", > id => "$analytics_id", > start_date => '2010-01-01', > end_date => '2010-02-01' > }); > > > Regards, >
Thanks a lot for so fast responce But problem is not solved it is showing this error. Can't locate object method "data_feed" via package "Net::Google::Analytics" at /usr/lib/perl5/site_perl/5.8.8/WWW/Analytics/MultiTouch.pm line 95. I have installed latest version of "Net::Google::Analytics" Please suggest
Subject: Re: [rt.cpan.org #77446] module is not working fine and throwing errors
Date: Sun, 27 May 2012 09:07:10 +0930
To: bug-WWW-Analytics-MultiTouch [...] rt.cpan.org
From: Jon Schutz <jon.schutz [...] youramigo.com>
Net::Google::Analytics version 3 has a completely different API to prior versions. Until this can be addressed, the workaround is to downgrade to Net::Google::Analytics 0.11003. -- Jon Schutz CTO, YourAmigo Ltd 53 Gilbert St Adelaide SA 5000 Ph: +61 8 82119211 Fax: +61 8 8211 6356 http://www.youramigo.com On 26/05/12 22:18, S.Joe via RT wrote: Show quoted text
> Queue: WWW-Analytics-MultiTouch > Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> > > On Sat May 26 07:17:43 2012, jon.schutz@youramigo.com wrote:
>> Appears to be a documentation error. Use it like this: >> >> WWW::Analytics::MultiTouch->process({ >> user => "$username", >> pass => "$password", >> id => "$analytics_id", >> start_date => '2010-01-01', >> end_date => '2010-02-01' >> }); >> >> >> Regards, >>
> Thanks a lot for so fast responce > But problem is not solved it is showing this error. > > Can't locate object method "data_feed" via package > "Net::Google::Analytics" at > /usr/lib/perl5/site_perl/5.8.8/WWW/Analytics/MultiTouch.pm line 95. > > I have installed latest version of "Net::Google::Analytics" > > Please suggest > >
Subject: Re: [rt.cpan.org #77446] module is not working fine and throwing errors
Date: Sun, 27 May 2012 12:14:24 +0530
To: bug-WWW-Analytics-MultiTouch [...] rt.cpan.org
From: Sulabh Katiyar <amazingsulabh [...] gmail.com>
So please tell me from where i can found this version??? Thanks for very quick response , i know you are busy man. Regards On Sun, May 27, 2012 at 5:07 AM, jon.schutz@youramigo.com via RT < bug-WWW-Analytics-MultiTouch@rt.cpan.org> wrote: Show quoted text
> <URL: https://rt.cpan.org/Ticket/Display.html?id=77446 > > > Net::Google::Analytics version 3 has a completely different API to prior > versions. Until this can be addressed, the workaround is to downgrade > to Net::Google::Analytics 0.11003. > > > -- > Jon Schutz > CTO, YourAmigo Ltd > 53 Gilbert St > Adelaide SA 5000 > Ph: +61 8 82119211 > Fax: +61 8 8211 6356 > http://www.youramigo.com > > > > On 26/05/12 22:18, S.Joe via RT wrote:
> > Queue: WWW-Analytics-MultiTouch > > Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> > > > > On Sat May 26 07:17:43 2012, jon.schutz@youramigo.com wrote:
> >> Appears to be a documentation error. Use it like this: > >> > >> WWW::Analytics::MultiTouch->process({ > >> user => "$username", > >> pass => "$password", > >> id => "$analytics_id", > >> start_date => '2010-01-01', > >> end_date => '2010-02-01' > >> }); > >> > >> > >> Regards, > >>
> > Thanks a lot for so fast responce > > But problem is not solved it is showing this error. > > > > Can't locate object method "data_feed" via package > > "Net::Google::Analytics" at > > /usr/lib/perl5/site_perl/5.8.8/WWW/Analytics/MultiTouch.pm line 95. > > > > I have installed latest version of "Net::Google::Analytics" > > > > Please suggest > > > >
> >
Subject: Re: [rt.cpan.org #77446] module is not working fine and throwing errors
Date: Sun, 27 May 2012 17:39:22 +0930
To: bug-WWW-Analytics-MultiTouch [...] rt.cpan.org
From: Jon Schutz <jon.schutz [...] youramigo.com>
Visit the download link from CPAN, at http://search.cpan.org/~nwellnhof/Net-Google-Analytics-0.11003/ -- Jon Schutz CTO, YourAmigo Ltd 53 Gilbert St Adelaide SA 5000 Ph: +61 8 82119211 Fax: +61 8 8211 6356 http://www.youramigo.com On 27/05/12 16:14, S.Joe via RT wrote: Show quoted text
> Queue: WWW-Analytics-MultiTouch > Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> > > So please tell me from where i can found this version??? > Thanks for very quick response , i know you are busy man. > Regards > > > On Sun, May 27, 2012 at 5:07 AM, jon.schutz@youramigo.com via RT< > bug-WWW-Analytics-MultiTouch@rt.cpan.org> wrote: >
>> <URL: https://rt.cpan.org/Ticket/Display.html?id=77446> >> >> Net::Google::Analytics version 3 has a completely different API to prior >> versions. Until this can be addressed, the workaround is to downgrade >> to Net::Google::Analytics 0.11003. >> >> >> -- >> Jon Schutz >> CTO, YourAmigo Ltd >> 53 Gilbert St >> Adelaide SA 5000 >> Ph: +61 8 82119211 >> Fax: +61 8 8211 6356 >> http://www.youramigo.com >> >> >> >> On 26/05/12 22:18, S.Joe via RT wrote:
>>> Queue: WWW-Analytics-MultiTouch >>> Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> >>> >>> On Sat May 26 07:17:43 2012, jon.schutz@youramigo.com wrote:
>>>> Appears to be a documentation error. Use it like this: >>>> >>>> WWW::Analytics::MultiTouch->process({ >>>> user => "$username", >>>> pass => "$password", >>>> id => "$analytics_id", >>>> start_date => '2010-01-01', >>>> end_date => '2010-02-01' >>>> }); >>>> >>>> >>>> Regards, >>>>
>>> Thanks a lot for so fast responce >>> But problem is not solved it is showing this error. >>> >>> Can't locate object method "data_feed" via package >>> "Net::Google::Analytics" at >>> /usr/lib/perl5/site_perl/5.8.8/WWW/Analytics/MultiTouch.pm line 95. >>> >>> I have installed latest version of "Net::Google::Analytics" >>> >>> Please suggest >>> >>>
>>
Subject: Re: [rt.cpan.org #77446] module is not working fine and throwing errors
Date: Mon, 28 May 2012 11:36:02 +0530
To: bug-WWW-Analytics-MultiTouch [...] rt.cpan.org
From: Sulabh Katiyar <amazingsulabh [...] gmail.com>
Hi Jon, I have installed this module version. But still it is throwing this error. Please Check. Use of uninitialized value in repeat (x) at /usr/lib/perl5/site_perl/5.8.8/WWW/Analytics/MultiTouch.pm line 727. Argument "white" isn't numeric in integer ne (!=) at /usr/lib/perl5/site_perl/5.8.8/Spreadsheet/WriteExcel/Format.pm line 185. What should i do now. Thank & Regards On Sun, May 27, 2012 at 1:39 PM, jon.schutz@youramigo.com via RT < bug-WWW-Analytics-MultiTouch@rt.cpan.org> wrote: Show quoted text
> <URL: https://rt.cpan.org/Ticket/Display.html?id=77446 > > > Visit the download link from CPAN, at > > http://search.cpan.org/~nwellnhof/Net-Google-Analytics-0.11003/ > > > -- > Jon Schutz > CTO, YourAmigo Ltd > 53 Gilbert St > Adelaide SA 5000 > Ph: +61 8 82119211 > Fax: +61 8 8211 6356 > http://www.youramigo.com > > > > On 27/05/12 16:14, S.Joe via RT wrote:
> > Queue: WWW-Analytics-MultiTouch > > Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> > > > > So please tell me from where i can found this version??? > > Thanks for very quick response , i know you are busy man. > > Regards > > > > > > On Sun, May 27, 2012 at 5:07 AM, jon.schutz@youramigo.com via RT< > > bug-WWW-Analytics-MultiTouch@rt.cpan.org> wrote: > >
> >> <URL: https://rt.cpan.org/Ticket/Display.html?id=77446> > >> > >> Net::Google::Analytics version 3 has a completely different API to prior > >> versions. Until this can be addressed, the workaround is to downgrade > >> to Net::Google::Analytics 0.11003. > >> > >> > >> -- > >> Jon Schutz > >> CTO, YourAmigo Ltd > >> 53 Gilbert St > >> Adelaide SA 5000 > >> Ph: +61 8 82119211 > >> Fax: +61 8 8211 6356 > >> http://www.youramigo.com > >> > >> > >> > >> On 26/05/12 22:18, S.Joe via RT wrote:
> >>> Queue: WWW-Analytics-MultiTouch > >>> Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> > >>> > >>> On Sat May 26 07:17:43 2012, jon.schutz@youramigo.com wrote:
> >>>> Appears to be a documentation error. Use it like this: > >>>> > >>>> WWW::Analytics::MultiTouch->process({ > >>>> user => "$username", > >>>> pass => "$password", > >>>> id => "$analytics_id", > >>>> start_date => '2010-01-01', > >>>> end_date => '2010-02-01' > >>>> }); > >>>> > >>>> > >>>> Regards, > >>>>
> >>> Thanks a lot for so fast responce > >>> But problem is not solved it is showing this error. > >>> > >>> Can't locate object method "data_feed" via package > >>> "Net::Google::Analytics" at > >>> /usr/lib/perl5/site_perl/5.8.8/WWW/Analytics/MultiTouch.pm line 95. > >>> > >>> I have installed latest version of "Net::Google::Analytics" > >>> > >>> Please suggest > >>> > >>>
> >>
> > >
Subject: Re: [rt.cpan.org #77446] module is not working fine and throwing errors
Date: Mon, 28 May 2012 11:58:16 +0530
To: bug-WWW-Analytics-MultiTouch [...] rt.cpan.org
From: Sulabh Katiyar <amazingsulabh [...] gmail.com>
Hi Jon, One more thing i have installed this version for " Spreadsheet-WriteExcel-2.37<http://search.cpan.org/%7Ejmcnamara/Spreadsheet-WriteExcel-2.37/>". Is it compatible for your module or it is also necessary downgrade it? Thanks & Regards On Mon, May 28, 2012 at 11:36 AM, Sulabh Katiyar <amazingsulabh@gmail.com>wrote: Show quoted text
> Hi Jon, > I have installed this module version. But still it is throwing > this error. > Please Check. > > Use of uninitialized value in repeat (x) at > /usr/lib/perl5/site_perl/5.8.8/WWW/Analytics/MultiTouch.pm line 727. > Argument "white" isn't numeric in integer ne (!=) at > /usr/lib/perl5/site_perl/5.8.8/Spreadsheet/WriteExcel/Format.pm line 185. > > What should i do now. > > Thank & Regards > > > > On Sun, May 27, 2012 at 1:39 PM, jon.schutz@youramigo.com via RT < > bug-WWW-Analytics-MultiTouch@rt.cpan.org> wrote: >
>> <URL: https://rt.cpan.org/Ticket/Display.html?id=77446 > >> >> Visit the download link from CPAN, at >> >> http://search.cpan.org/~nwellnhof/Net-Google-Analytics-0.11003/ >> >> >> -- >> Jon Schutz >> CTO, YourAmigo Ltd >> 53 Gilbert St >> Adelaide SA 5000 >> Ph: +61 8 82119211 >> Fax: +61 8 8211 6356 >> http://www.youramigo.com >> >> >> >> On 27/05/12 16:14, S.Joe via RT wrote:
>> > Queue: WWW-Analytics-MultiTouch >> > Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> >> > >> > So please tell me from where i can found this version??? >> > Thanks for very quick response , i know you are busy man. >> > Regards >> > >> > >> > On Sun, May 27, 2012 at 5:07 AM, jon.schutz@youramigo.com via RT< >> > bug-WWW-Analytics-MultiTouch@rt.cpan.org> wrote: >> >
>> >> <URL: https://rt.cpan.org/Ticket/Display.html?id=77446> >> >> >> >> Net::Google::Analytics version 3 has a completely different API to
>> prior
>> >> versions. Until this can be addressed, the workaround is to downgrade >> >> to Net::Google::Analytics 0.11003. >> >> >> >> >> >> -- >> >> Jon Schutz >> >> CTO, YourAmigo Ltd >> >> 53 Gilbert St >> >> Adelaide SA 5000 >> >> Ph: +61 8 82119211 >> >> Fax: +61 8 8211 6356 >> >> http://www.youramigo.com >> >> >> >> >> >> >> >> On 26/05/12 22:18, S.Joe via RT wrote:
>> >>> Queue: WWW-Analytics-MultiTouch >> >>> Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> >> >>> >> >>> On Sat May 26 07:17:43 2012, jon.schutz@youramigo.com wrote:
>> >>>> Appears to be a documentation error. Use it like this: >> >>>> >> >>>> WWW::Analytics::MultiTouch->process({ >> >>>> user => "$username", >> >>>> pass => "$password", >> >>>> id => "$analytics_id", >> >>>> start_date => '2010-01-01', >> >>>> end_date => '2010-02-01' >> >>>> }); >> >>>> >> >>>> >> >>>> Regards, >> >>>>
>> >>> Thanks a lot for so fast responce >> >>> But problem is not solved it is showing this error. >> >>> >> >>> Can't locate object method "data_feed" via package >> >>> "Net::Google::Analytics" at >> >>> /usr/lib/perl5/site_perl/5.8.8/WWW/Analytics/MultiTouch.pm line 95. >> >>> >> >>> I have installed latest version of "Net::Google::Analytics" >> >>> >> >>> Please suggest >> >>> >> >>>
>> >>
>> >> >>
>
Subject: Re: [rt.cpan.org #77446] module is not working fine and throwing errors
Date: Mon, 28 May 2012 16:49:48 +0930
To: bug-WWW-Analytics-MultiTouch [...] rt.cpan.org
From: Jon Schutz <jon.schutz [...] youramigo.com>
These two are warnings, not errors, so shouldn't affect the output. The first warnings indicates that it has found no data, i.e. it hasn't downloaded any events from Google Analytics. So if you're seeing an empty spreadsheet, that would be why. Check your date ranges (in your first email you had year 2010). Check in GA that you can actually see multitouch events for the given date range. The second one is something to do with presentation, probably something that needs to be fixed but shouldn't be preventing you from getting a report. Spreadsheet::WriteExcel version 2.37 is fine. Regards, -- Jon Schutz CTO, YourAmigo Ltd 53 Gilbert St Adelaide SA 5000 Ph: +61 8 82119211 Fax: +61 8 8211 6356 http://www.youramigo.com On 28/05/12 15:36, S.Joe via RT wrote: Show quoted text
> Queue: WWW-Analytics-MultiTouch > Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=77446 > > > Hi Jon, > I have installed this module version. But still it is throwing > this error. > Please Check. > > Use of uninitialized value in repeat (x) at > /usr/lib/perl5/site_perl/5.8.8/WWW/Analytics/MultiTouch.pm line 727. > Argument "white" isn't numeric in integer ne (!=) at > /usr/lib/perl5/site_perl/5.8.8/Spreadsheet/WriteExcel/Format.pm line 185. > > What should i do now. > > Thank & Regards > > > On Sun, May 27, 2012 at 1:39 PM, jon.schutz@youramigo.com via RT < > bug-WWW-Analytics-MultiTouch@rt.cpan.org> wrote: >
>> <URL: https://rt.cpan.org/Ticket/Display.html?id=77446 > >> >> Visit the download link from CPAN, at >> >> http://search.cpan.org/~nwellnhof/Net-Google-Analytics-0.11003/ >> >> >> -- >> Jon Schutz >> CTO, YourAmigo Ltd >> 53 Gilbert St >> Adelaide SA 5000 >> Ph: +61 8 82119211 >> Fax: +61 8 8211 6356 >> http://www.youramigo.com >> >> >> >> On 27/05/12 16:14, S.Joe via RT wrote:
>>> Queue: WWW-Analytics-MultiTouch >>> Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> >>> >>> So please tell me from where i can found this version??? >>> Thanks for very quick response , i know you are busy man. >>> Regards >>> >>> >>> On Sun, May 27, 2012 at 5:07 AM, jon.schutz@youramigo.com via RT< >>> bug-WWW-Analytics-MultiTouch@rt.cpan.org> wrote: >>>
>>>> <URL: https://rt.cpan.org/Ticket/Display.html?id=77446> >>>> >>>> Net::Google::Analytics version 3 has a completely different API to prior >>>> versions. Until this can be addressed, the workaround is to downgrade >>>> to Net::Google::Analytics 0.11003. >>>> >>>> >>>> -- >>>> Jon Schutz >>>> CTO, YourAmigo Ltd >>>> 53 Gilbert St >>>> Adelaide SA 5000 >>>> Ph: +61 8 82119211 >>>> Fax: +61 8 8211 6356 >>>> http://www.youramigo.com >>>> >>>> >>>> >>>> On 26/05/12 22:18, S.Joe via RT wrote:
>>>>> Queue: WWW-Analytics-MultiTouch >>>>> Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> >>>>> >>>>> On Sat May 26 07:17:43 2012, jon.schutz@youramigo.com wrote:
>>>>>> Appears to be a documentation error. Use it like this: >>>>>> >>>>>> WWW::Analytics::MultiTouch->process({ >>>>>> user => "$username", >>>>>> pass => "$password", >>>>>> id => "$analytics_id", >>>>>> start_date => '2010-01-01', >>>>>> end_date => '2010-02-01' >>>>>> }); >>>>>> >>>>>> >>>>>> Regards, >>>>>>
>>>>> Thanks a lot for so fast responce >>>>> But problem is not solved it is showing this error. >>>>> >>>>> Can't locate object method "data_feed" via package >>>>> "Net::Google::Analytics" at >>>>> /usr/lib/perl5/site_perl/5.8.8/WWW/Analytics/MultiTouch.pm line 95. >>>>> >>>>> I have installed latest version of "Net::Google::Analytics" >>>>> >>>>> Please suggest >>>>> >>>>>
>> >>
Subject: Re: [rt.cpan.org #77446] module is not working fine and throwing errors
Date: Mon, 28 May 2012 17:03:41 +0530
To: bug-WWW-Analytics-MultiTouch [...] rt.cpan.org
From: Sulabh Katiyar <amazingsulabh [...] gmail.com>
Hi Jon, I have some doubts because my this script is fetching data from same time interval from my analytics acc. This is my another script. #!/usr/bin/perl -w use strict; use Net::Google::Analytics; use Net::Google::Analytics::OAuth2; use Data::Dumper; # Insert your numeric Analytics profile ID here. You can find it under # profile settings. DO NOT use your account or property ID (UA-nnnnnn). my $profile_id = "50364277"; # See GETTING STARTED for how to get a client id, client secret, and # refresh token # We will get this detail by googleapi.pl script my $client_id = " 1059172236126-8olol7b5ms72dg103q1866otr7nkvd9u.apps.googleusercontent.com"; my $client_secret = "rt1wRF7obdolOb11xo8lJo8G"; my $refresh_token = "1/VpmVUqWZRbN5owen4RBwQzBGmkXp7a1hGLQji2x6RRU"; my $analytics = Net::Google::Analytics->new; # Authenticate my $oauth = Net::Google::Analytics::OAuth2->new( client_id => $client_id, client_secret => $client_secret, ); my $token = $oauth->refresh_access_token($refresh_token); $analytics->token($token); # Build request my $req = $analytics->new_request( ids => "ga:$profile_id", dimensions => "ga:medium,ga:source", metrics => "ga:bounces,ga:visits", sort => "-ga:visits", start_date => "2012-01-01", end_date => "2012-01-31", max_results => 5, ); # filters => "ga:medium==referral",(Removed from $req) # Send request my $res = $analytics->retrieve($req); die("GA error: " . $res->error_message) if !$res->is_success; # Print results print "Results: 1 - ", $res->items_per_page, " of ", $res->total_results, "\n\n"; for my $row (@{ $res->rows }) { print $row->get_source, ": ", $row->get_visits, " visits, ", $row->get_bounces, " bounces\n"; } print "\nTotal: ", $res->totals("visits"), " visits, ", $res->totals("bounces"), " bounces\n"; Sorry i am irritating you but i am in need that's why i am troubling you. Thanks & Regards On Mon, May 28, 2012 at 12:50 PM, jon.schutz@youramigo.com via RT < bug-WWW-Analytics-MultiTouch@rt.cpan.org> wrote: Show quoted text
> <URL: https://rt.cpan.org/Ticket/Display.html?id=77446 > > > These two are warnings, not errors, so shouldn't affect the output. > > The first warnings indicates that it has found no data, i.e. it hasn't > downloaded any events from Google Analytics. So if you're seeing an > empty spreadsheet, that would be why. Check your date ranges (in your > first email you had year 2010). Check in GA that you can actually see > multitouch events for the given date range. > > The second one is something to do with presentation, probably something > that needs to be fixed but shouldn't be preventing you from getting a > report. > > Spreadsheet::WriteExcel version 2.37 is fine. > > Regards, > > > -- > Jon Schutz > CTO, YourAmigo Ltd > 53 Gilbert St > Adelaide SA 5000 > Ph: +61 8 82119211 > Fax: +61 8 8211 6356 > http://www.youramigo.com > > > > On 28/05/12 15:36, S.Joe via RT wrote:
> > Queue: WWW-Analytics-MultiTouch > > Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=77446 > > > > > Hi Jon, > > I have installed this module version. But still it is throwing > > this error. > > Please Check. > > > > Use of uninitialized value in repeat (x) at > > /usr/lib/perl5/site_perl/5.8.8/WWW/Analytics/MultiTouch.pm line 727. > > Argument "white" isn't numeric in integer ne (!=) at > > /usr/lib/perl5/site_perl/5.8.8/Spreadsheet/WriteExcel/Format.pm line 185. > > > > What should i do now. > > > > Thank & Regards > > > > > > On Sun, May 27, 2012 at 1:39 PM, jon.schutz@youramigo.com via RT < > > bug-WWW-Analytics-MultiTouch@rt.cpan.org> wrote: > >
> >> <URL: https://rt.cpan.org/Ticket/Display.html?id=77446 > > >> > >> Visit the download link from CPAN, at > >> > >> http://search.cpan.org/~nwellnhof/Net-Google-Analytics-0.11003/ > >> > >> > >> -- > >> Jon Schutz > >> CTO, YourAmigo Ltd > >> 53 Gilbert St > >> Adelaide SA 5000 > >> Ph: +61 8 82119211 > >> Fax: +61 8 8211 6356 > >> http://www.youramigo.com > >> > >> > >> > >> On 27/05/12 16:14, S.Joe via RT wrote:
> >>> Queue: WWW-Analytics-MultiTouch > >>> Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> > >>> > >>> So please tell me from where i can found this version??? > >>> Thanks for very quick response , i know you are busy man. > >>> Regards > >>> > >>> > >>> On Sun, May 27, 2012 at 5:07 AM, jon.schutz@youramigo.com via RT< > >>> bug-WWW-Analytics-MultiTouch@rt.cpan.org> wrote: > >>>
> >>>> <URL: https://rt.cpan.org/Ticket/Display.html?id=77446> > >>>> > >>>> Net::Google::Analytics version 3 has a completely different API to
> prior
> >>>> versions. Until this can be addressed, the workaround is to downgrade > >>>> to Net::Google::Analytics 0.11003. > >>>> > >>>> > >>>> -- > >>>> Jon Schutz > >>>> CTO, YourAmigo Ltd > >>>> 53 Gilbert St > >>>> Adelaide SA 5000 > >>>> Ph: +61 8 82119211 > >>>> Fax: +61 8 8211 6356 > >>>> http://www.youramigo.com > >>>> > >>>> > >>>> > >>>> On 26/05/12 22:18, S.Joe via RT wrote:
> >>>>> Queue: WWW-Analytics-MultiTouch > >>>>> Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> > >>>>> > >>>>> On Sat May 26 07:17:43 2012, jon.schutz@youramigo.com wrote:
> >>>>>> Appears to be a documentation error. Use it like this: > >>>>>> > >>>>>> WWW::Analytics::MultiTouch->process({ > >>>>>> user => "$username", > >>>>>> pass => "$password", > >>>>>> id => "$analytics_id", > >>>>>> start_date => '2010-01-01', > >>>>>> end_date => '2010-02-01' > >>>>>> }); > >>>>>> > >>>>>> > >>>>>> Regards, > >>>>>>
> >>>>> Thanks a lot for so fast responce > >>>>> But problem is not solved it is showing this error. > >>>>> > >>>>> Can't locate object method "data_feed" via package > >>>>> "Net::Google::Analytics" at > >>>>> /usr/lib/perl5/site_perl/5.8.8/WWW/Analytics/MultiTouch.pm line 95. > >>>>> > >>>>> I have installed latest version of "Net::Google::Analytics" > >>>>> > >>>>> Please suggest > >>>>> > >>>>>
> >> > >>
> > >
Subject: Re: [rt.cpan.org #77446] module is not working fine and throwing errors
Date: Mon, 28 May 2012 21:47:36 +0930
To: bug-WWW-Analytics-MultiTouch [...] rt.cpan.org
From: Jon Schutz <jon.schutz [...] youramigo.com>
But do you actually have multitouch event data that is visible in GA for the given date range? i.e. if you go to Content, Events, Overview can you see 'multitouch' in the Event Category list? -- Jon Schutz CTO, YourAmigo Ltd 53 Gilbert St Adelaide SA 5000 Ph: +61 8 82119211 Fax: +61 8 8211 6356 http://www.youramigo.com On 28/05/12 21:03, S.Joe via RT wrote: Show quoted text
> Queue: WWW-Analytics-MultiTouch > Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> > > Hi Jon, > I have some doubts because my this script is fetching data from > same time interval from my analytics acc. > > This is my another script. > > #!/usr/bin/perl -w > use strict; > use Net::Google::Analytics; > use Net::Google::Analytics::OAuth2; > use Data::Dumper; > > > # Insert your numeric Analytics profile ID here. You can find it under > # profile settings. DO NOT use your account or property ID (UA-nnnnnn). > my $profile_id = "50364277"; > # See GETTING STARTED for how to get a client id, client secret, and > # refresh token > # We will get this detail by googleapi.pl script > my $client_id = " > 1059172236126-8olol7b5ms72dg103q1866otr7nkvd9u.apps.googleusercontent.com"; > my $client_secret = "rt1wRF7obdolOb11xo8lJo8G"; > my $refresh_token = "1/VpmVUqWZRbN5owen4RBwQzBGmkXp7a1hGLQji2x6RRU"; > > my $analytics = Net::Google::Analytics->new; > > # Authenticate > my $oauth = Net::Google::Analytics::OAuth2->new( > client_id => $client_id, > client_secret => $client_secret, > ); > > > my $token = $oauth->refresh_access_token($refresh_token); > $analytics->token($token); > > > # Build request > my $req = $analytics->new_request( > ids => "ga:$profile_id", > dimensions => "ga:medium,ga:source", > metrics => "ga:bounces,ga:visits", > sort => "-ga:visits", > start_date => "2012-01-01", > end_date => "2012-01-31", > max_results => 5, > ); > # filters => "ga:medium==referral",(Removed from $req) > # Send request > my $res = $analytics->retrieve($req); > die("GA error: " . $res->error_message) if !$res->is_success; > > # Print results > print "Results: 1 - ", $res->items_per_page, " of ", > $res->total_results, "\n\n"; > > for my $row (@{ $res->rows }) { > print > $row->get_source, ": ", > $row->get_visits, " visits, ", > $row->get_bounces, " bounces\n"; > } > > print > "\nTotal: ", > $res->totals("visits"), " visits, ", > $res->totals("bounces"), " bounces\n"; > > Sorry i am irritating you but i am in need that's why i am troubling you. > > Thanks& Regards > > > > > On Mon, May 28, 2012 at 12:50 PM, jon.schutz@youramigo.com via RT< > bug-WWW-Analytics-MultiTouch@rt.cpan.org> wrote: >
>> <URL: https://rt.cpan.org/Ticket/Display.html?id=77446> >> >> These two are warnings, not errors, so shouldn't affect the output. >> >> The first warnings indicates that it has found no data, i.e. it hasn't >> downloaded any events from Google Analytics. So if you're seeing an >> empty spreadsheet, that would be why. Check your date ranges (in your >> first email you had year 2010). Check in GA that you can actually see >> multitouch events for the given date range. >> >> The second one is something to do with presentation, probably something >> that needs to be fixed but shouldn't be preventing you from getting a >> report. >> >> Spreadsheet::WriteExcel version 2.37 is fine. >> >> Regards, >> >> >> -- >> Jon Schutz >> CTO, YourAmigo Ltd >> 53 Gilbert St >> Adelaide SA 5000 >> Ph: +61 8 82119211 >> Fax: +61 8 8211 6356 >> http://www.youramigo.com >> >> >> >> On 28/05/12 15:36, S.Joe via RT wrote:
>>> Queue: WWW-Analytics-MultiTouch >>> Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> >>> >>> Hi Jon, >>> I have installed this module version. But still it is throwing >>> this error. >>> Please Check. >>> >>> Use of uninitialized value in repeat (x) at >>> /usr/lib/perl5/site_perl/5.8.8/WWW/Analytics/MultiTouch.pm line 727. >>> Argument "white" isn't numeric in integer ne (!=) at >>> /usr/lib/perl5/site_perl/5.8.8/Spreadsheet/WriteExcel/Format.pm line 185. >>> >>> What should i do now. >>> >>> Thank& Regards >>> >>> >>> On Sun, May 27, 2012 at 1:39 PM, jon.schutz@youramigo.com via RT< >>> bug-WWW-Analytics-MultiTouch@rt.cpan.org> wrote: >>>
>>>> <URL: https://rt.cpan.org/Ticket/Display.html?id=77446> >>>> >>>> Visit the download link from CPAN, at >>>> >>>> http://search.cpan.org/~nwellnhof/Net-Google-Analytics-0.11003/ >>>> >>>> >>>> -- >>>> Jon Schutz >>>> CTO, YourAmigo Ltd >>>> 53 Gilbert St >>>> Adelaide SA 5000 >>>> Ph: +61 8 82119211 >>>> Fax: +61 8 8211 6356 >>>> http://www.youramigo.com >>>> >>>> >>>> >>>> On 27/05/12 16:14, S.Joe via RT wrote:
>>>>> Queue: WWW-Analytics-MultiTouch >>>>> Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> >>>>> >>>>> So please tell me from where i can found this version??? >>>>> Thanks for very quick response , i know you are busy man. >>>>> Regards >>>>> >>>>> >>>>> On Sun, May 27, 2012 at 5:07 AM, jon.schutz@youramigo.com via RT< >>>>> bug-WWW-Analytics-MultiTouch@rt.cpan.org> wrote: >>>>>
>>>>>> <URL: https://rt.cpan.org/Ticket/Display.html?id=77446> >>>>>> >>>>>> Net::Google::Analytics version 3 has a completely different API to
>> prior
>>>>>> versions. Until this can be addressed, the workaround is to downgrade >>>>>> to Net::Google::Analytics 0.11003. >>>>>> >>>>>> >>>>>> -- >>>>>> Jon Schutz >>>>>> CTO, YourAmigo Ltd >>>>>> 53 Gilbert St >>>>>> Adelaide SA 5000 >>>>>> Ph: +61 8 82119211 >>>>>> Fax: +61 8 8211 6356 >>>>>> http://www.youramigo.com >>>>>> >>>>>> >>>>>> >>>>>> On 26/05/12 22:18, S.Joe via RT wrote:
>>>>>>> Queue: WWW-Analytics-MultiTouch >>>>>>> Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> >>>>>>> >>>>>>> On Sat May 26 07:17:43 2012, jon.schutz@youramigo.com wrote:
>>>>>>>> Appears to be a documentation error. Use it like this: >>>>>>>> >>>>>>>> WWW::Analytics::MultiTouch->process({ >>>>>>>> user => "$username", >>>>>>>> pass => "$password", >>>>>>>> id => "$analytics_id", >>>>>>>> start_date => '2010-01-01', >>>>>>>> end_date => '2010-02-01' >>>>>>>> }); >>>>>>>> >>>>>>>> >>>>>>>> Regards, >>>>>>>>
>>>>>>> Thanks a lot for so fast responce >>>>>>> But problem is not solved it is showing this error. >>>>>>> >>>>>>> Can't locate object method "data_feed" via package >>>>>>> "Net::Google::Analytics" at >>>>>>> /usr/lib/perl5/site_perl/5.8.8/WWW/Analytics/MultiTouch.pm line 95. >>>>>>> >>>>>>> I have installed latest version of "Net::Google::Analytics" >>>>>>> >>>>>>> Please suggest >>>>>>> >>>>>>>
>>>>
>> >>
Subject: Re: [rt.cpan.org #77446] module is not working fine and throwing errors
Date: Mon, 28 May 2012 18:06:50 +0530
To: bug-WWW-Analytics-MultiTouch [...] rt.cpan.org
From: Sulabh Katiyar <amazingsulabh [...] gmail.com>
HI Jon, Right Catch Brother, There is no "multitouch" in Event Category. Thanks for so much support, can you tell me how to enable "multitouch" and how it works. Thanks a lot for so kind support. Thanks & Regards On Mon, May 28, 2012 at 5:47 PM, jon.schutz@youramigo.com via RT < bug-WWW-Analytics-MultiTouch@rt.cpan.org> wrote: Show quoted text
> <URL: https://rt.cpan.org/Ticket/Display.html?id=77446 > > > But do you actually have multitouch event data that is visible in GA for > the given date range? i.e. if you go to Content, Events, Overview can > you see 'multitouch' in the Event Category list? > > > -- > Jon Schutz > CTO, YourAmigo Ltd > 53 Gilbert St > Adelaide SA 5000 > Ph: +61 8 82119211 > Fax: +61 8 8211 6356 > http://www.youramigo.com > > > > On 28/05/12 21:03, S.Joe via RT wrote:
> > Queue: WWW-Analytics-MultiTouch > > Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> > > > > Hi Jon, > > I have some doubts because my this script is fetching data
> from
> > same time interval from my analytics acc. > > > > This is my another script. > > > > #!/usr/bin/perl -w > > use strict; > > use Net::Google::Analytics; > > use Net::Google::Analytics::OAuth2; > > use Data::Dumper; > > > > > > # Insert your numeric Analytics profile ID here. You can find it
> under
> > # profile settings. DO NOT use your account or property ID
> (UA-nnnnnn).
> > my $profile_id = "50364277"; > > # See GETTING STARTED for how to get a client id, client secret, and > > # refresh token > > # We will get this detail by googleapi.pl script > > my $client_id = " > >
> 1059172236126-8olol7b5ms72dg103q1866otr7nkvd9u.apps.googleusercontent.com > ";
> > my $client_secret = "rt1wRF7obdolOb11xo8lJo8G"; > > my $refresh_token = "1/VpmVUqWZRbN5owen4RBwQzBGmkXp7a1hGLQji2x6RRU"; > > > > my $analytics = Net::Google::Analytics->new; > > > > # Authenticate > > my $oauth = Net::Google::Analytics::OAuth2->new( > > client_id => $client_id, > > client_secret => $client_secret, > > ); > > > > > > my $token = $oauth->refresh_access_token($refresh_token); > > $analytics->token($token); > > > > > > # Build request > > my $req = $analytics->new_request( > > ids => "ga:$profile_id", > > dimensions => "ga:medium,ga:source", > > metrics => "ga:bounces,ga:visits", > > sort => "-ga:visits", > > start_date => "2012-01-01", > > end_date => "2012-01-31", > > max_results => 5, > > ); > > # filters => "ga:medium==referral",(Removed from $req) > > # Send request > > my $res = $analytics->retrieve($req); > > die("GA error: " . $res->error_message) if !$res->is_success; > > > > # Print results > > print "Results: 1 - ", $res->items_per_page, " of ", > > $res->total_results, "\n\n"; > > > > for my $row (@{ $res->rows }) { > > print > > $row->get_source, ": ", > > $row->get_visits, " visits, ", > > $row->get_bounces, " bounces\n"; > > } > > > > print > > "\nTotal: ", > > $res->totals("visits"), " visits, ", > > $res->totals("bounces"), " bounces\n"; > > > > Sorry i am irritating you but i am in need that's why i am troubling you. > > > > Thanks& Regards > > > > > > > > > > On Mon, May 28, 2012 at 12:50 PM, jon.schutz@youramigo.com via RT< > > bug-WWW-Analytics-MultiTouch@rt.cpan.org> wrote: > >
> >> <URL: https://rt.cpan.org/Ticket/Display.html?id=77446> > >> > >> These two are warnings, not errors, so shouldn't affect the output. > >> > >> The first warnings indicates that it has found no data, i.e. it hasn't > >> downloaded any events from Google Analytics. So if you're seeing an > >> empty spreadsheet, that would be why. Check your date ranges (in your > >> first email you had year 2010). Check in GA that you can actually see > >> multitouch events for the given date range. > >> > >> The second one is something to do with presentation, probably something > >> that needs to be fixed but shouldn't be preventing you from getting a > >> report. > >> > >> Spreadsheet::WriteExcel version 2.37 is fine. > >> > >> Regards, > >> > >> > >> -- > >> Jon Schutz > >> CTO, YourAmigo Ltd > >> 53 Gilbert St > >> Adelaide SA 5000 > >> Ph: +61 8 82119211 > >> Fax: +61 8 8211 6356 > >> http://www.youramigo.com > >> > >> > >> > >> On 28/05/12 15:36, S.Joe via RT wrote:
> >>> Queue: WWW-Analytics-MultiTouch > >>> Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> > >>> > >>> Hi Jon, > >>> I have installed this module version. But still it is
> throwing
> >>> this error. > >>> Please Check. > >>> > >>> Use of uninitialized value in repeat (x) at > >>> /usr/lib/perl5/site_perl/5.8.8/WWW/Analytics/MultiTouch.pm line 727. > >>> Argument "white" isn't numeric in integer ne (!=) at > >>> /usr/lib/perl5/site_perl/5.8.8/Spreadsheet/WriteExcel/Format.pm line
> 185.
> >>> > >>> What should i do now. > >>> > >>> Thank& Regards > >>> > >>> > >>> On Sun, May 27, 2012 at 1:39 PM, jon.schutz@youramigo.com via RT< > >>> bug-WWW-Analytics-MultiTouch@rt.cpan.org> wrote: > >>>
> >>>> <URL: https://rt.cpan.org/Ticket/Display.html?id=77446> > >>>> > >>>> Visit the download link from CPAN, at > >>>> > >>>> http://search.cpan.org/~nwellnhof/Net-Google-Analytics-0.11003/ > >>>> > >>>> > >>>> -- > >>>> Jon Schutz > >>>> CTO, YourAmigo Ltd > >>>> 53 Gilbert St > >>>> Adelaide SA 5000 > >>>> Ph: +61 8 82119211 > >>>> Fax: +61 8 8211 6356 > >>>> http://www.youramigo.com > >>>> > >>>> > >>>> > >>>> On 27/05/12 16:14, S.Joe via RT wrote:
> >>>>> Queue: WWW-Analytics-MultiTouch > >>>>> Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> > >>>>> > >>>>> So please tell me from where i can found this version??? > >>>>> Thanks for very quick response , i know you are busy man. > >>>>> Regards > >>>>> > >>>>> > >>>>> On Sun, May 27, 2012 at 5:07 AM, jon.schutz@youramigo.com via RT< > >>>>> bug-WWW-Analytics-MultiTouch@rt.cpan.org> wrote: > >>>>>
> >>>>>> <URL: https://rt.cpan.org/Ticket/Display.html?id=77446> > >>>>>> > >>>>>> Net::Google::Analytics version 3 has a completely different API to
> >> prior
> >>>>>> versions. Until this can be addressed, the workaround is to
> downgrade
> >>>>>> to Net::Google::Analytics 0.11003. > >>>>>> > >>>>>> > >>>>>> -- > >>>>>> Jon Schutz > >>>>>> CTO, YourAmigo Ltd > >>>>>> 53 Gilbert St > >>>>>> Adelaide SA 5000 > >>>>>> Ph: +61 8 82119211 > >>>>>> Fax: +61 8 8211 6356 > >>>>>> http://www.youramigo.com > >>>>>> > >>>>>> > >>>>>> > >>>>>> On 26/05/12 22:18, S.Joe via RT wrote:
> >>>>>>> Queue: WWW-Analytics-MultiTouch > >>>>>>> Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> > >>>>>>> > >>>>>>> On Sat May 26 07:17:43 2012, jon.schutz@youramigo.com wrote:
> >>>>>>>> Appears to be a documentation error. Use it like this: > >>>>>>>> > >>>>>>>> WWW::Analytics::MultiTouch->process({ > >>>>>>>> user => "$username", > >>>>>>>> pass => "$password", > >>>>>>>> id => "$analytics_id", > >>>>>>>> start_date => '2010-01-01', > >>>>>>>> end_date => '2010-02-01' > >>>>>>>> }); > >>>>>>>> > >>>>>>>> > >>>>>>>> Regards, > >>>>>>>>
> >>>>>>> Thanks a lot for so fast responce > >>>>>>> But problem is not solved it is showing this error. > >>>>>>> > >>>>>>> Can't locate object method "data_feed" via package > >>>>>>> "Net::Google::Analytics" at > >>>>>>> /usr/lib/perl5/site_perl/5.8.8/WWW/Analytics/MultiTouch.pm line 95. > >>>>>>> > >>>>>>> I have installed latest version of "Net::Google::Analytics" > >>>>>>> > >>>>>>> Please suggest > >>>>>>> > >>>>>>>
> >>>>
> >> > >>
> > >

Message body is not shown because it is too large.

Subject: Re: [rt.cpan.org #77446] module is not working fine and throwing errors
Date: Tue, 29 May 2012 14:52:16 +0930
To: bug-WWW-Analytics-MultiTouch [...] rt.cpan.org
From: Jon Schutz <jon.schutz [...] youramigo.com>
I think you'll find all the information you need here: http://www.multitouchanalytics.com/documentation.html On 28/05/12 22:07, S.Joe via RT wrote: Show quoted text
> Queue: WWW-Analytics-MultiTouch > Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=77446 > > > HI Jon, > Right Catch Brother, There is no "multitouch" in Event Category. > Thanks for so much support, can you tell me how to enable "multitouch" and > how it works. > > Thanks a lot for so kind support. > Thanks & Regards > > On Mon, May 28, 2012 at 5:47 PM, jon.schutz@youramigo.com via RT < > bug-WWW-Analytics-MultiTouch@rt.cpan.org> wrote: >
>> <URL: https://rt.cpan.org/Ticket/Display.html?id=77446 > >> >> But do you actually have multitouch event data that is visible in GA for >> the given date range? i.e. if you go to Content, Events, Overview can >> you see 'multitouch' in the Event Category list? >> >> >> -- >> Jon Schutz >> CTO, YourAmigo Ltd >> 53 Gilbert St >> Adelaide SA 5000 >> Ph: +61 8 82119211 >> Fax: +61 8 8211 6356 >> http://www.youramigo.com >> >> >> >> On 28/05/12 21:03, S.Joe via RT wrote:
>>> Queue: WWW-Analytics-MultiTouch >>> Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> >>> >>> Hi Jon, >>> I have some doubts because my this script is fetching data
>> from
>>> same time interval from my analytics acc. >>> >>> This is my another script. >>> >>> #!/usr/bin/perl -w >>> use strict; >>> use Net::Google::Analytics; >>> use Net::Google::Analytics::OAuth2; >>> use Data::Dumper; >>> >>> >>> # Insert your numeric Analytics profile ID here. You can find it
>> under
>>> # profile settings. DO NOT use your account or property ID
>> (UA-nnnnnn).
>>> my $profile_id = "50364277"; >>> # See GETTING STARTED for how to get a client id, client secret, and >>> # refresh token >>> # We will get this detail by googleapi.pl script >>> my $client_id = " >>>
>> 1059172236126-8olol7b5ms72dg103q1866otr7nkvd9u.apps.googleusercontent.com >> ";
>>> my $client_secret = "rt1wRF7obdolOb11xo8lJo8G"; >>> my $refresh_token = "1/VpmVUqWZRbN5owen4RBwQzBGmkXp7a1hGLQji2x6RRU"; >>> >>> my $analytics = Net::Google::Analytics->new; >>> >>> # Authenticate >>> my $oauth = Net::Google::Analytics::OAuth2->new( >>> client_id => $client_id, >>> client_secret => $client_secret, >>> ); >>> >>> >>> my $token = $oauth->refresh_access_token($refresh_token); >>> $analytics->token($token); >>> >>> >>> # Build request >>> my $req = $analytics->new_request( >>> ids => "ga:$profile_id", >>> dimensions => "ga:medium,ga:source", >>> metrics => "ga:bounces,ga:visits", >>> sort => "-ga:visits", >>> start_date => "2012-01-01", >>> end_date => "2012-01-31", >>> max_results => 5, >>> ); >>> # filters => "ga:medium==referral",(Removed from $req) >>> # Send request >>> my $res = $analytics->retrieve($req); >>> die("GA error: " . $res->error_message) if !$res->is_success; >>> >>> # Print results >>> print "Results: 1 - ", $res->items_per_page, " of ", >>> $res->total_results, "\n\n"; >>> >>> for my $row (@{ $res->rows }) { >>> print >>> $row->get_source, ": ", >>> $row->get_visits, " visits, ", >>> $row->get_bounces, " bounces\n"; >>> } >>> >>> print >>> "\nTotal: ", >>> $res->totals("visits"), " visits, ", >>> $res->totals("bounces"), " bounces\n"; >>> >>> Sorry i am irritating you but i am in need that's why i am troubling you. >>> >>> Thanks& Regards >>> >>> >>> >>> >>> On Mon, May 28, 2012 at 12:50 PM, jon.schutz@youramigo.com via RT< >>> bug-WWW-Analytics-MultiTouch@rt.cpan.org> wrote: >>>
>>>> <URL: https://rt.cpan.org/Ticket/Display.html?id=77446> >>>> >>>> These two are warnings, not errors, so shouldn't affect the output. >>>> >>>> The first warnings indicates that it has found no data, i.e. it hasn't >>>> downloaded any events from Google Analytics. So if you're seeing an >>>> empty spreadsheet, that would be why. Check your date ranges (in your >>>> first email you had year 2010). Check in GA that you can actually see >>>> multitouch events for the given date range. >>>> >>>> The second one is something to do with presentation, probably something >>>> that needs to be fixed but shouldn't be preventing you from getting a >>>> report. >>>> >>>> Spreadsheet::WriteExcel version 2.37 is fine. >>>> >>>> Regards, >>>> >>>> >>>> -- >>>> Jon Schutz >>>> CTO, YourAmigo Ltd >>>> 53 Gilbert St >>>> Adelaide SA 5000 >>>> Ph: +61 8 82119211 >>>> Fax: +61 8 8211 6356 >>>> http://www.youramigo.com >>>> >>>> >>>> >>>> On 28/05/12 15:36, S.Joe via RT wrote:
>>>>> Queue: WWW-Analytics-MultiTouch >>>>> Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> >>>>> >>>>> Hi Jon, >>>>> I have installed this module version. But still it is
>> throwing
>>>>> this error. >>>>> Please Check. >>>>> >>>>> Use of uninitialized value in repeat (x) at >>>>> /usr/lib/perl5/site_perl/5.8.8/WWW/Analytics/MultiTouch.pm line 727. >>>>> Argument "white" isn't numeric in integer ne (!=) at >>>>> /usr/lib/perl5/site_perl/5.8.8/Spreadsheet/WriteExcel/Format.pm line
>> 185.
>>>>> What should i do now. >>>>> >>>>> Thank& Regards >>>>> >>>>> >>>>> On Sun, May 27, 2012 at 1:39 PM, jon.schutz@youramigo.com via RT< >>>>> bug-WWW-Analytics-MultiTouch@rt.cpan.org> wrote: >>>>>
>>>>>> <URL: https://rt.cpan.org/Ticket/Display.html?id=77446> >>>>>> >>>>>> Visit the download link from CPAN, at >>>>>> >>>>>> http://search.cpan.org/~nwellnhof/Net-Google-Analytics-0.11003/ >>>>>> >>>>>> >>>>>> -- >>>>>> Jon Schutz >>>>>> CTO, YourAmigo Ltd >>>>>> 53 Gilbert St >>>>>> Adelaide SA 5000 >>>>>> Ph: +61 8 82119211 >>>>>> Fax: +61 8 8211 6356 >>>>>> http://www.youramigo.com >>>>>> >>>>>> >>>>>> >>>>>> On 27/05/12 16:14, S.Joe via RT wrote:
>>>>>>> Queue: WWW-Analytics-MultiTouch >>>>>>> Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> >>>>>>> >>>>>>> So please tell me from where i can found this version??? >>>>>>> Thanks for very quick response , i know you are busy man. >>>>>>> Regards >>>>>>> >>>>>>> >>>>>>> On Sun, May 27, 2012 at 5:07 AM, jon.schutz@youramigo.com via RT< >>>>>>> bug-WWW-Analytics-MultiTouch@rt.cpan.org> wrote: >>>>>>>
>>>>>>>> <URL: https://rt.cpan.org/Ticket/Display.html?id=77446> >>>>>>>> >>>>>>>> Net::Google::Analytics version 3 has a completely different API to
>>>> prior
>>>>>>>> versions. Until this can be addressed, the workaround is to
>> downgrade
>>>>>>>> to Net::Google::Analytics 0.11003. >>>>>>>> >>>>>>>> >>>>>>>> -- >>>>>>>> Jon Schutz >>>>>>>> CTO, YourAmigo Ltd >>>>>>>> 53 Gilbert St >>>>>>>> Adelaide SA 5000 >>>>>>>> Ph: +61 8 82119211 >>>>>>>> Fax: +61 8 8211 6356 >>>>>>>> http://www.youramigo.com >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> On 26/05/12 22:18, S.Joe via RT wrote:
>>>>>>>>> Queue: WWW-Analytics-MultiTouch >>>>>>>>> Ticket<URL: https://rt.cpan.org/Ticket/Display.html?id=77446> >>>>>>>>> >>>>>>>>> On Sat May 26 07:17:43 2012, jon.schutz@youramigo.com wrote:
>>>>>>>>>> Appears to be a documentation error. Use it like this: >>>>>>>>>> >>>>>>>>>> WWW::Analytics::MultiTouch->process({ >>>>>>>>>> user => "$username", >>>>>>>>>> pass => "$password", >>>>>>>>>> id => "$analytics_id", >>>>>>>>>> start_date => '2010-01-01', >>>>>>>>>> end_date => '2010-02-01' >>>>>>>>>> }); >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> Regards, >>>>>>>>>>
>>>>>>>>> Thanks a lot for so fast responce >>>>>>>>> But problem is not solved it is showing this error. >>>>>>>>> >>>>>>>>> Can't locate object method "data_feed" via package >>>>>>>>> "Net::Google::Analytics" at >>>>>>>>> /usr/lib/perl5/site_perl/5.8.8/WWW/Analytics/MultiTouch.pm line 95. >>>>>>>>> >>>>>>>>> I have installed latest version of "Net::Google::Analytics" >>>>>>>>> >>>>>>>>> Please suggest >>>>>>>>> >>>>>>>>>
>>>>
>> >>
-- Jon Schutz CTO, YourAmigo Ltd 53 Gilbert St Adelaide SA 5000 Ph: +61 8 82119211 Fax: +61 8 8211 6356 http://www.youramigo.com