Re: No email/password specified

2012-01-25 Thread Etienne Lawlor
You will need to include username and password in the arguments to the client constructor like so: my $client = Google::Ads::AdWords::Client-new({ version = 'v201109', email = 'email', password = 'password' developer_token = 'TOKEN', user_agent = 'USERAGENT',

Re: No email/password specified

2011-11-08 Thread David Torres
Hi Nell, They way you need to construct the Client object is like this: my $client = Google::Ads::AdWords::Client-new({ version = v201101, auth_token = ..., user_agent = ..., client_id = 'client_1+...', developer_token = '...++GBP', alternate_url =

No email/password specified

2011-11-03 Thread Neil Kirk
/password specified error. I have this code: Google::Ads::AdWords::Logging::enable_soap_logging(); $adClient = Google::Ads::AdWords::Client-new({ version=v201101, userAgent='skeniver', authToken=$authToken, developerToken=$email.'++GBP', }); Can any one tell me where what I am doing wrong