I'm trying to get rows from a Google Spreadsheet in PHP. I need to query the spreadsheet using an email address. Here is some of my code:
$service = Zend_Gdata_Spreadsheets::AUTH_SERVICE_NAME;
$client = Zend_Gdata_ClientLogin::getHttpClient($gUser, $gPassword, $service);
$spreadsheetService = new Zend_Gdata_Spreadsheets($client);
$query = new Zend_Gdata_Spreadsheets_ListQuery();
$query->setSpreadsheetKey($key);
$query->setWorksheetId("od6");
$query->setSpreadsheetQuery('emailaddress=test@test.com');
$listFeed = $spreadsheetService->getListFeed($query);
When running this, I get a 400 back from Google, saying "Parse error: Invalid token encountered". The URL queried is:
https://spreadsheets.google.com/feeds/list/[key]/od6/private/full?sq=emailaddress%3Dtest%40test.com
If I query using 'twittername=somename' then the query works fine. So, I think the problem is somehow related to the email address.
I have tried encoding the @ and the dots, to no avail.
If I try to run the query in my browser, I find that I have to wrap the URL in braces and the address in encoded quotes to make the query work, thus:
https://spreadsheets.google.com/feeds/list/[key]/od6/private/full?sq={emailaddress}%3d%22test@test.com%22
Any help is much appreciated! I'm on the verge of grabbing ALL the records from Google and querying them manually in PHP!
setSpreadsheetQuery('emailaddress="test@test.com"')it does not work, maddening! There must be bug in Google Spreadsheet API. Also if I copy & paste the URL it supposedly uses from stack trace to browser, it just works. – Ciantic Nov 14 '11 at 16:05Zend\Gdata\App.php's line:"$this->_httpClient->setParameterGet($name, $value);"turn OFF the freaking magic quotes or convert the line to$this->_httpClient->setParameterGet($name, stripslashes($value));– Ciantic Nov 14 '11 at 16:34