Net::Google::AuthSub login failed with new Google Drive version
This code in Perl was working for years and now my Spreadsheets logins failed, when I logged into my account I noticed switch to a new Drive version. Probably some authentication methods deprecated? my $auth = Net::Google::AuthSub->new; my $response = $auth->login('LOGIN@gmail.com', 'PASS'); if ($response->is_success) { print "Hurrah! Logged in\n"; } else { die "Login failed: ".$response->error."\n"; } The result is: Login failed: And the code: use Net::Google::Spreadsheets; my $service = Net::Google::Spreadsheets->new( username => 'LOGIN@gmail.com', password => 'PASS' ); The result is: Net: