Hi Venky,

For each instance of CalendarEventEntry, you can retrieve the
author(s) of the event and obtain his/her name and email.  This is a
snippet of how it's done:

List<Person> authors = entry.getAuthors();
Iterator iter = authors.iterator();

while(iter.hasNext()) {
  Person author = (Person) iter.next();
  String email = author.getEmail();
}

Hope it helps,
Austin

On Oct 14, 10:00 pm, venkyengineer <[EMAIL PROTECTED]> wrote:
> Hi Friends,
>       I am using Calendar data api(java) and i want to display the
> Google User name at the top of the Calendar Events, I have displayed
> the Calendar Events, and Calendar Name, but now i want the Google User
> name to be displayed. Such as, Hello user_name, For example, if a user
> enters with his login id as, [EMAIL PROTECTED] then i want to display
> this username as Hello spring. Is this possible if so how can i make
> it.
>
>       Waiting for the Response,
>
> With Regards,
> Venky.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Calendar Data API" group.
To post to this group, send email to 
[email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-calendar-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to