我想開始將依賴Google Spreadsheet API(v3)的應用程序遷移到Google Sheets API v4。然而,在我開始之前,我還有一個問題仍然存在。如何處理使用Google Sheets API v4檢索行的結構化查詢
在Google Sheets API v3中,我可以使用請求URL中的sq
參數獲得結構化查詢的基於行的Feed。如果工作表有10000行,並且我只需要在特定列中獲取具有特定值的行,這將非常有用。速度方面也非常有效。
在看谷歌的遷移指南,以V4,我發現在「檢索行數據」這一說法:
The Sheets API v4 does not currently have a direct equivalent for the Sheets
API v3 structured queries. However, you can retrieve the relevant data and
sort through it as needed in your application.
我如何去從有效地考慮到10000行的表中檢索「相關數據」在v4 API中沒有結構化查詢。我寧願不必檢索所有10000行來篩選該響應。特別是因爲它會減慢我的應用程序,並可能增加通過電線發送的數據量。
使用v4 API,我如何檢索在特定列(或一組列)中具有特定值的行?