Click here to Skip to main content
15,884,353 members
Please Sign up or sign in to vote.
1.44/5 (2 votes)
i am facing so much of confusions and problems while migrating from google api v2 over to v3.

I am dealing with the job scheduling of each employees in a company with the help of integrated google calender. i lost the full control while the provider change the version. let me know the following thing?

1. can i access the calender of an employee if his/her gmail id and its password is known?
2. is it needed to provide individual CLIENT ID and CLIENT secret?

3. what is the use of public Public API access(server key)

4. how to form the request url that must send to the server.

5. how to use the JSON file downloaded from the developer console


5. previously i was using the query as

Try
Dim myService As New CalendarService("test")
myService.setUserCredentials(user_name, user_password)
Dim query As New CalendarQuery()
query.Uri = New Uri("https://www.google.com/calendar/feeds/default/owncalendars/full")
Dim resultFeed As CalendarFeed = DirectCast(myService.Query(query), CalendarFeed)
Catch ex As Exception
radnote.Text = ex.ToString "Account not accessible, please verify your google account user name and password"
radnote.Show()
connect = 0
End Try
Posted

1 solution

I have solved this problem, for more details Handling events in google calendar using google API v3
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900