|
I am able to follow the tutorial example to login and create worksheet on my personal and corporate gmail accounts.
The problem is how do I specify the http proxy info(wwwgate.mycompany.com, username/password) in the
use Net::Google::Spreadsheets;
#login into google doc account in company network behind firewall
my $service = Net::Google::Spreadsheets->new(
username => 'tj@mycomany.com',
password => 'password'
);
# Get a list of existing spreadsheet.
my @spreadsheets = $service->spreadsheets();
Thanks for your pointer
tj |