如何通过Guzzle客户端PHP查询Google表格

时间:2016-03-04 20:31:33

标签: php guzzle

我正在使用google驱动器php库访问api驱动器上的Google工作表。

工作表的第一行包含列标题。

>>> list(chunked(6, data))
[b'abcdef', b'ghijkl', b'mnopqr', b'stuvwx', b'yz']   # Python 3
['abcdef', 'ghijkl', 'mnopqr', 'stuvwx', 'yz']        # Python 2.7

但是,我想根据一列中的值检索行的子集。我已经尝试了这些方法中的每一个,并且它们都返回所有行而不是子集。

$httpClient = new GuzzleHttp\Client(['headers' => $headers]);

// This code works just fine and retrieves all rows of the sheet:

$resp = $httpClient->request('GET', $url);

我开始认为我需要参考“县'以不同的方式。有没有人对如何使这项工作有任何想法?

提前致谢。

1 个答案:

答案 0 :(得分:0)

我发现这个有用:

$ resp = $ httpClient-> request('GET',$ url。'?sq = county = Sonoma');