xodus_fr has asked for the wisdom of the Perl Monks concerning the following question:
my @rows = ( [qw(name age favorite exodus)], # header [qw(tarounina 31 curry has)], [qw(jirou 18 gyoza begun)], [qw(saburou 27 ramen NPG)], ); for my $row (@rows) { push @requests, { pasteData => { coordinate => { sheetId => $sheet_prop->{sheetId}, rowIndex => $idx++, columnIndex => 0, }, data => $gs->to_csv(@$row), type => 'PASTE_NORMAL', delimiter => ',', }, }; } ($content, $res) = $gs->request( POST => ':batchUpdate', { requests => \@requests, }, );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Net::Google::Spreadsheets::V4 usage
by Marshall (Canon) on Aug 23, 2021 at 21:24 UTC | |
by xodus_fr (Novice) on Aug 24, 2021 at 00:02 UTC | |
by Marshall (Canon) on Aug 25, 2021 at 07:03 UTC | |
by bliako (Abbot) on Aug 24, 2021 at 10:18 UTC |