我正在尝试使用PHP中的Google API更改Google表格上的现有数据验证过滤器。到目前为止,我可以从单元中获取信息并更新单元。但是我不能更换过滤器。
这是我的示例代码PHP,用于获取信息
require __DIR__ . '../../vendor/autoload.php';
$client = new \Google_Client();
$client->setApplicationName('My PHP App');
$client->setScopes([\Google_Service_Sheets::SPREADSHEETS]);
$client->setAccessType('offline');
$client->setAuthConfig(__DIR__ . '/Google.json');
$jsonAuth = getenv('JSON_AUTH');
$client->setAuthConfig(json_decode($jsonAuth, true));
$sheets = new \Google_Service_Sheets($client);
$data = [];
$data1 = [];
$currentRow = 1;
$spreadsheetId = '1bU4fXwwZmPIsUe_w7ERsacmJ5L8uk9o6LwTsL8AHzUY';
$range = 'Sheet2!A3';
$response = $sheets->spreadsheets_values->get($spreadsheetId, $range);
$response = $response[0]['0'];
echo "$response";