Google 结构化查询参数不适用于列表提要

Google Structured Query Parameters Not Working For List Feed

使用this documentation for reference as well as url escaping certain characters, I have the following spreadsheet being read via Spreadsheet API and I'm trying to fetch specific rows only: https://docs.google.com/spreadsheets/d/1E5ROfSQAuQvqx7o61Au9eEd-6B7W35gfj3g7C6VhpGY/

如果我尝试按 badgenumber 进行过滤,我得到的结果为零

https://spreadsheets.google.com/feeds/list/1E5ROfSQAuQvqx7o61Au9eEd-6B7W35gfj3g7C6VhpGY/od6/public/values?sq=badgenumber%3D%2212345%22

<openSearch:totalResults>0</openSearch:totalResults>

sq=badgenumber="12345"

您当前的参数有双引号。尝试删除它们。这个查询字符串对我有用:

?sq=badgenumber%3D12345

它也适用于名字和姓氏列,它们显然是字符串。所以似乎不需要引号:

?sq=firstname%3DDan
?sq=lastname%3DKusanago