I'm trying to retrieve a Google Calendar event using the Zend Gdata library.
When I create an event I store in my database the event URL returned by the insertevent method. Initially I thought I could just use this URL to then delete the event later on. After a little research I realized that you actually need a special URL which is the...
I am trying to use the Gcal API in PHP.
I am using the ZEND framework
function getAuthSubUrl($company)
{
$next = "http://$company.mysite.com";
$scope = 'http://www.google.com/calendar/feeds/';
$secure = false;
$session = true;
return (Zend_Gdata_AuthSub::getAuthSubTokenUri($next, $scope, $secure, $session));
}
$authSubUrl =...
Hi guys I'm building a form that uploads documents to my google docs account however its not working I keep getting an error - the following is my code;
$service = Zend_Gdata_Docs::AUTH_SERVICE_NAME;
$client = Zend_Gdata_ClientLogin::getHttpClient($username, $pww, $service);
$docs = new Zend_Gdata_Docs($client);
$newDocumentEntry = $do...
I am building a sync application between GData and another source, using Zend GData library.
While it is clear how to get the last update timestamp, I am not sure about the last updater.
In order to decide whether I should sync the entry or not, I want to verify it wasn't me (the sync application) which updated it.
Looking at the Zend_...
I am trying to save data from my existing webform written in php to a google spreadsheet. I tried the Zend GData and can't seem to find my way around it. Does anyone have a better solution for this.
Is it possible to grab the data and insert it into mysql database and to google spreadsheet at the same time?
...
I have read the examples here:
http://framework.zend.com/manual/en/zend.gdata.spreadsheets.html
But those examples assume the spreadsheet to be read needs authentication:
$service = Zend_Gdata_Spreadsheets::AUTH_SERVICE_NAME;
$client = Zend_Gdata_ClientLogin::getHttpClient($user, $pass, $service);
$spreadsheetService = new Zend_Gdata_S...
Hi guys,
Don't know if anyone has experience with the Google Spreadsheets API or the Zend_GData classes but it's worth a go:
When I try to insert a value in a 750 row spreadsheet, it takes ages and then throws an error that my memory limit (which is 128 MB!) was exceeded. I also got this when querying all records of this spreadsheet bu...
Hi,
How can be created new user in google Google Apps Standard Edition account with Zend Gdata/PHP ?
(Is it possible or google only give option to make it manually?)
Thanks
...
I'm working on a project to pull in album information from a user after authenticating using AuthSub. I cannot for the life of me figure out how to pull a list of all the albums associated with the default authenticated user.
When I call getAuthSubTokenInfo I get ..
Target=dev.mywebsite.com Secure=false Scope=http://picasaweb.google.co...
I'm having a strange problem with the Google Calendar API (through PHP with Zend_Gdata.) On the calendar in question I have several recurring events starting in March:
2010-04-19 9:30 - 16:00
2010-04-20 10:00 - 15:30
2010-04-21 9:30 - 16:00
2010-04-22 10:00 - 15:30
2010-04-23 9:30 - 12:30
Each of these repeats indefinitely but h...
I'm trying to create a PHP function that adds an event to a google Calendar. It appears to be building the object correctly but it throws a "Call to a member function getDOM() on a non-object in FeedEntryParent.php" error when trying to add the event. Here is the abbreviated class with only the constructor and the function that adds th...
I am working on a user interface, "dashboard" of sorts which has some div boxes on it, which contain information relevant to the current logged in user. Their calendar, a todo list, and some statistics dynamically pulled from a google spreadsheet.
I found here:
http://code.google.com/apis/spreadsheets/data/3.0/reference.html#CellFeed
th...
I have been noticing some strange (but consistent) behavior with the
chromeless YouTube Player API. I have a Flash AS2 SWF that uses
cueVideoById() to show the thumbnail images of videos which works
great. When the thumb is clicked I call playVideo() to play the
video.
For some videos this loads the video and when I look at the traf...
I want to list all the worksheets with the name of the sheet and the "worksheetid" which is used in the API to reference the sheet.
...
Hey I have been playing with the GDATA_Calendar implementation inside the Zend Framework and have been successfully able to create sub calendars.
However, I have been having trouble in dynamically sharing these calendars with users.
Looking over the official Google docs (http://code.google.com/apis/calendar/data/2.0/developers_guide_pr...
I have got as far as using ClientLogin to log in to the Google Account, I can retrieve a list of the calendar names for this user (using the example code on the Dev Guide).
This is great. However, when I demand a list of events (again using Google's example code) only the events for the primary calendar are returned.
If it is the case ...