I\'ve got my session with the valid token that i set up this way :
$session_token = Zend_Gdata_AuthSub::getAuthSubSessionToken($_GET[\'token\']); // Store th
// Retrieve user's list of Google Docs $client = Zend_Gdata_AuthSub::getHttpClient($_SESSION['cal_token']); $docs = new Zend_Gdata_Docs($client); $feed = $docs->getDocumentListFeed(); foreach ($feed->entries as $entry) { echo "$entry->title\n"; }