Hi,


I’m trying to access google spreadsheet rows as a feed.


I have a published google spreadsheet and in my php file I try to do this to 
retrive the feed.


$query = new Zend_Gdata_Spreadsheets_ListQuery;

$query->setSpreadsheetKey( $key );

$query->setWorksheetId( $id);

$query->setVisibility( 'public' );

$query->setProjection( 'values' );


$spreadSheets = new Zend_Gdata_Spreadsheets( );

$listFeed = $spreadSheets->getListFeed( $query );


My problem is that the script can’t get passed the getListFeed method call. 
Somewhere during execution the script hangs. And I find myself with a phpd 
process that takes up my entire cpu.


Any thoughts where to start attacking this issue?


I can se my feed in my browser fine if I use the URL generated by the Query 
above.


I’m using mac os X, with MAMP as PHP server.


Thanks in advance!

/Erik

Reply via email to