google-calendar-api

Google calendar API storing code or access token

懵懂的女人 提交于 2020-01-05 02:26:29
问题 Im trying to figure out Google calendars but I cant make sense out of which string I need to store in my db to fetch access tokens when I need to push or get data. I make my request to Google and they return: ?code=4/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx# Then I authenticate: $client->authenticate($_GET['code']); Then I get access token: $client->getAccessToken() Everything works great for this session. But, I dont want to have to ask the user to authenticate each time. Can I store the $

FullCalendar Event Object: Non-standard Fields (GCal)

为君一笑 提交于 2020-01-03 20:13:11
问题 FullCalendar (FC) documentation states Non-standard Fields In addition to the fields above, you may also include your own non-standard fields in each Event Object. FullCalendar will not modify or delete these fields. For example, developers often include a description field for use in callbacks such as eventRender. [Source: Event Object] and for Google Calendar event sources Advanced: Extended Properties Google Calendar’s API allows you to specify Extended Properties for your events. The

Trigger script on Google calendar event

和自甴很熟 提交于 2020-01-03 11:03:03
问题 I want to trigger some script when new calendar event is created in Google Calendar (say calling some rest API that enters event information to my database). I do not want any kind of UI that triggers the script. Is it possible to achieve this using Google gadget since I do not want any UI? I would really appreciate the help as I am new to Google API. Thanks a lot Shubhra 回答1: Calendar API has something like notifications. See this link: Push Notifications. From documentation: The Google

Trigger script on Google calendar event

家住魔仙堡 提交于 2020-01-03 11:02:14
问题 I want to trigger some script when new calendar event is created in Google Calendar (say calling some rest API that enters event information to my database). I do not want any kind of UI that triggers the script. Is it possible to achieve this using Google gadget since I do not want any UI? I would really appreciate the help as I am new to Google API. Thanks a lot Shubhra 回答1: Calendar API has something like notifications. See this link: Push Notifications. From documentation: The Google

403 error when inserting event with attendants in Google Calendar Api c#

余生颓废 提交于 2020-01-03 05:09:10
问题 In a .net project, I'm trying to add an event with some attendants with google calendar v3 api. I can create an event without attendants successfully, but when I try to add attendants, it gaves me the following error: Google.Apis.Requests.RequestError Calendar usage limits exceeded. [403] Errors [ Message[Calendar usage limits exceeded.] Location[ - ] Reason[quotaExceeded] Domain[usageLimits] ] I haven't done any previous request(actually, i have created new gmail accounts and link their

Which PHP calendar will suit my needs? Or build my own?

ⅰ亾dé卋堺 提交于 2020-01-03 03:00:31
问题 There are so many web based calendars out there that I'm not sure which will best suit my purposes. I want to create an events calendar, which I suppose looks and functions in much the same way as google calendar. But users shouldn't need to sign up for a gmail account or a google account. Users of my social network website should be able to create events in the calendar and share it with other friends in their "friend network". In month, year or day views, you can mouse hover events to see a

Using Google Calendar API V3 with .net framework 3.5

久未见 提交于 2020-01-02 19:28:13
问题 I am using a Web application which uses .Net 3.5 framework. It uses the Google calendar API V1. When searched in google forums it was found that the Google calendar API V1 & V2 are deprecated and should use V3. Google Calendar API V3 platform support is .NET Framework 4 and 4.5 So should our application be upgraded to .NET framework 4 or 4.5 ? Or is there is any solution for using google calendar API in .Net 3.5 framework ? 回答1: Question: Google Calendar API V3 platform support is .NET

Add event to google calendar from ios

谁都会走 提交于 2020-01-02 13:33:07
问题 I have followed following tutorial to fetch events from google calendar which is working fine. https://developers.google.com/google-apps/calendar/quickstart/ios Now I am stuck in insert event from my iOS app so that it can be synced with web as well. Please guide me in the right direction or post some sample code. I am using this code for authorization in viewDidLoad // Initialize the Google Calendar API service & load existing credentials from the keychain if available. self.service = [

gdata Unknown authorization header - started 12/11/13

僤鯓⒐⒋嵵緔 提交于 2020-01-02 08:25:20
问题 The google calendar sync had been working fine for a long time now suddenly starting yesterday we started getting the following error. I saw that this has happened in the past and google engineers (SRE) had to apply a patch to fix this. com.google.gdata.util.AuthenticationException: Unknown authorization header 回答1: Google Account Authentication APIs ( ClientLogin, AuthSub and OAuth 1.0 ) are deprecated as per deprecation policy. http://googledevelopers.blogspot.com/2012/04/changes-to

Google oauth2 access token expires in 1 hour. I want to make it 1 day

萝らか妹 提交于 2020-01-02 07:51:55
问题 I have created a project with Google OAuth2 credentials for use with Google calendar. However the access toke expires in every 1 hour. Can someone please help me change the expire time to 1 day. I have use this code to access the google calendar events: $client = new Google_Client(); $client->setApplicationName("Client_Library_Examples"); $client->setClientId($client_id); $client->setClientSecret($client_secret); $client->setRedirectUri($redirect_uri); $client->setAccessType('offline');