Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 331515
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T09:46:53+00:00 2026-05-12T09:46:53+00:00

I am currently working on a Google Calendar Sync Feature which is supposed to

  • 0

I am currently working on a Google Calendar Sync Feature which is supposed to sync with our own Calendar app and to the Google Calendar app. Now I need to identify the recent changes in Google Calendar so I can copy these events into our Calendar App. I use the zend gdata however any idea I would appreciate.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T09:46:54+00:00Added an answer on May 12, 2026 at 9:46 am

    (Modified from http://framework.zend.com/manual/en/zend.gdata.calendar.html)

    $query = $service->newEventQuery();
    $query->setUser('default');
    $query->setVisibility('private');
    $query->setProjection('full');
    $query->setOrderby('starttime');
    $query->setFutureevents('true');
    
    // Subtract time frame for when you want to detect
    // updated events, for example, in the past 24 hrs
    $refresh = time() - 60*60*24;
    $refresh_date = date('Y-m-dTH:i:sP', $refresh);
    
    $query->setUpdatedMin($refresh_date);
    
    
    // Retrieve the event list from the calendar server
    try {
        $eventFeed = $service->getCalendarEventFeed($query);
    } catch (Zend_Gdata_App_Exception $e) {
        echo "Error: " . $e->getMessage();
    }
    
    // Iterate through the list of events, outputting them as an HTML list
    echo "<ul>";
    foreach ($eventFeed as $event) {
        echo "<li>" . $event->title . " (Event ID: " . $event->id . ")</li>";
    }
    echo "</ul>";
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am currently working on a simple web application through Google App engine using
I'm currently working on a very simple calendar using Jquery. Actually, We need a
I'm currently working on a project using Flask and Google App Engine . Calling
I'm currently working on a SalesForce.com tutorial entitled Force.com for Google App Engine for
I am currently working on a small project using RESTlet on Google App Engine/Java.
I'm currently working on an inherited project which uses Google's Visualization API (for both
I'm currently working on a site which displays map data in Google Maps, but
I'm currently working on a Google Maps project and am implementing a search function.
Currently a website I'm working on has a web-based calendar of upcoming events. We
I am currently working on an application that pulls Google Map locations from an

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.