当前位置: 首页 > 知识库问答 >
问题:

如何在GoogleSheetsAPI中使用工作表ID?

康恩
2023-03-14

GoogleSheets文档可以包含一些表单。第一个是默认值和“0”。一般情况下,任何工作表都有如下地址:

https://docs.google.com/spreadsheets/d/(spreadsheetId)/编辑#gid=(sheetId)

同时具有spreadsheetIdsheetId

但是在API文档中没有提到如何使用sheetId。我只能读取和编辑给定电子表格ID的默认表格。

如果在请求中来自示例性链接中显示的代码,我添加了sheetId属性,我得到错误:

{ 
    message: 'Invalid JSON payload received. Unknown name "sheetId": Cannot bind query parameter. Field \'sheetId\' could not be found in request message.',
    domain: 'global',
    reason: 'badRequest' 
}

共有3个答案

马天逸
2023-03-14

下面是我的工作示例,用于“按SheetId重命名电子表格中的工作表”函数。您可以以同样的方式使用Google电子表格API文档中的其他方法。希望对某人有帮助


    <?php
function getClient()   //standard auth function for google sheets API
{
    $clientConfigPath = __DIR__ . '/google_credentials/client_secret.json';
    $client = new Google_Client();
    $client->setApplicationName('Google Sheets API PHP Quickstart');
    $client->setScopes(Google_Service_Sheets::SPREADSHEETS);
    $client->setAuthConfig($clientConfigPath);
    $client->setAccessType('offline');

    // Load previously authorized credentials from a file.
    $credentialsPath = (__DIR__ . '/google_credentials/credentials.json');
    if (file_exists($credentialsPath)) {
        $accessToken = json_decode(file_get_contents($credentialsPath), true);
    } else {
        // Request authorization from the user.
        $authUrl = $client->createAuthUrl();
        printf("Open the following link in your browser:\n%s\n", $authUrl);
        print 'Enter verification code: ';
        $authCode = trim(fgets(STDIN));

        // Exchange authorization code for an access token.
        $accessToken = $client->fetchAccessTokenWithAuthCode($authCode);

        // Store the credentials to disk.
        if (!file_exists(dirname($credentialsPath))) {
            mkdir(dirname($credentialsPath), 0700, true);
        }
        file_put_contents($credentialsPath, json_encode($accessToken));
        printf("Credentials saved to %s\n", $credentialsPath);
    }
    $client->setAccessToken($accessToken);

    // Refresh the token if it's expired.
    if ($client->isAccessTokenExpired()) {
        $client->fetchAccessTokenWithRefreshToken($client->getRefreshToken());
        file_put_contents($credentialsPath, json_encode($client->getAccessToken()));
    }
    return $client;
}


function renameSheet(string $sheetId, string $newTitle, string $spreadsheetId)
{
    // Get the API client and construct the service object.
    $client = getClient();
    $service = new Google_Service_Sheets($client);

    $requests = [
        new Google_Service_Sheets_Request([
            'updateSheetProperties' => [
                'properties' => [
                    'sheetId' => $sheetId,
                    'title' => $newTitle,
                ],
                'fields' => 'title'
            ]
        ])
    ];

    $batchUpdateRequest = new Google_Service_Sheets_BatchUpdateSpreadsheetRequest([
        'requests' => $requests
    ]);

    return $service->spreadsheets->batchUpdate($spreadsheetId, $batchUpdateRequest);
}

更新如果要按图纸ID获取图纸标题,可以使用以下函数

function getSpreadsheetInfo($spreadsheetId)  
{
    $client = getClient();
    $service = new Google_Service_Sheets($client);

    $response = $service->spreadsheets->get($spreadsheetId);
    return $response;
}

function getSheets($spreadsheetId)  
{
    $spreadsheet_info = getSpreadsheetInfo($spreadsheetId);
    $sheets_info = [];
    foreach ($spreadsheet_info as $item) {
        $sheet_id = $item['properties']['sheetId'];
        $sheet_title = $item['properties']['title'];
        $sheets_info[$sheet_id] = $sheet_title;
    }
    return $sheets_info;
}

$sheets_info_array = getSheets($YOUR_SPREADSHEET_ID_HERE);

$sheets\u info\u数组将相等

array (
    "sheet_id1(int)" => 'sheet_title1',
    "sheet_id2(int)" => 'sheet_title3',
)

所以你可以得到$your_sheet_id的标题为$sheets_info_array[$your_sheet_id]

朱睿
2023-03-14

创建新Google工作表时始终存在的初始空白选项卡始终分配有sheetId 0。

随后创建的图纸是随机的十位数。只有第一个选项卡具有图纸ID 0。即使重命名图纸,其ID也保持不变。ID永远不会被重用-它们在给定的工作表中保持唯一性。

使用Google Drive API,使用工作表的Google Drive文件ID实例化对Google工作表的访问。

一旦您实例化了对特定Google工作表文件的访问,您就可以引用工作表选项卡中的每个选项卡,并通过使用“sheetId”术语来操作工作表选项卡中的信息、格式等。

下面是一个使用sheetId 0重命名Google工作表选项卡名称的PHP示例。

<?php
/*
 *   Google Sheets API V4 / Drive API V3, rename existing sheet tab example
 *
 */
$fileID = '/* pass your Google Sheet Google Drive file ID here */';
$client = new Google_Client();
$client->useApplicationDefaultCredentials(); // the JSON service account key location as defined in $_SERVER
$client->setApplicationName('API Name');
$client->addScope(Google_Service_Drive::DRIVE);
$client->setAccessType('offline');
$client->setSubject('API Instance Subject');
$sheet = new Google_Service_Sheets($client);
$sheetList = $sheet->spreadsheets->get($fileID);

/*
 *   iterate through all Google Sheet tabs in this sheet
 */
 $homeFlag = FALSE;
 foreach($sheetList->getSheets() as $sheetRecord) {
        /*
         *   if match, save $sheetTabID from Google Sheet tab 
         */
         if ($sheetRecord['properties']['sheetId'] == 0) {
                 $sheetTabID = $sheetRecord['properties']['sheetId'];
                 $sheetTabTitle = $sheetRecord['properties']['title'];
                 $homeFlag = TRUE;
            }
    }

/*
 *   if $homeFlag is TRUE, you found your desired tab, so rename tab in Google Sheet
 */
 if ($homeFlag) {
         $newTabName = 'NotTabZero';
         $sheetRenameTab = new Google_Service_Sheets_BatchUpdateSpreadsheetRequest(array('requests' => array('updateSheetProperties' => array('properties' => array('sheetId' => $sheetTabID, 'title' => $newTabName), 'fields' => 'title'))));
         $sheetResult = $sheet->spreadsheets->batchUpdate($sheetID,$sheetRenameTab);
    }
?>
扈瑞
2023-03-14

如本文所述,range参数可以包括以下图纸名称:,

Sheet1!A1

如果您必须使用工作表ID而不是工作表名称,您可以使用任何使用dataFilter的替代endpoint,如spreadsheets.values.batchUpdateByDataFilter而不是spreadsheets.values.batchUpdate。然后,您可以在请求正文中使用sheetIddata.dataFilter.gridRange.sheetId

但是,开发人员元数据是将对象(表/范围/列)永久关联到变量的首选方法,用户可以修改这些对象。

 类似资料:
  • 如果我想发布Google Sheets电子表格,以便将其嵌入iframe中的页面,我会手动执行以下操作: 导航到谷歌驱动器 打开一个电子表格 文件 如何在前端使用JavaScript通过GoogleSheetsAPI编程实现上述功能?我正在应用程序中动态生成电子表格,并希望在创建后立即将其嵌入页面。 创建工作表后,我可以使用必要的属性(工作表ID等)动态创建iframe元素。这是一个错误。从这个问

  • 我使用脚本将数据从MySQL数据库导入到工作表中。在导入过程中,其他具有重公式的工作表(vlookup、sumifs、filter)会不断重新计算,因此需要花费很长时间。我想在MySQL数据完全导入后,通过脚本插入公式。 为了简化此过程,我想将工作表上的所有公式(这是一个很长的工作表)提取到一个文件中,并将提取的数据格式化为以下方式:示例:从工作表“摘要”中提取数据: 循环检查工作表中的每个单元格

  • 在我的Android应用程序,我想追加一行(与新的食品订单信息)到谷歌表格的顶部。从https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/append留档听起来我只能追加到表的底部。但是我真的需要从顶部追加新行,我怀疑这是不可能的。 我能够使用以下代码将行追加到底部: 是否可以将该行附加到表的顶

  • 我是一个真正的新手程序员,试图用Apache Poi为一个朋友制作一个编辑电子表格的小java程序。目前,我使用以下代码浏览excel文件: 问题是我不知道 excel 文件将具有的确切工作表数。我试过了: 但它不起作用,所以我想知道是否有任何方法可以浏览工作簿的所有工作表。

  • 我正在使用Azure函数进行一个ETL项目,在该项目中,我从blob存储中提取数据,在Python和pandas中转换数据,并使用pandas将数据加载到_sql()。我试图通过使用异步IO和语言工作者来提高这个过程的效率。 我有点困惑,因为我的印象是asyncio使用一个线程工作,但Azure Functions文档说如果你改变配置,你可以使用多个语言工作者,甚至一个不使用async关键字的方法