403 Forbidden Error Adding An Event To A Google Calendar
Solution 1:
Limits and quotas protect the Google infrastructure from an automated process that uses the Calendar Resource API in an inappropriate way. Excessive requests from an API might result from a harmless typo, or may result from an inefficiently designed system that makes needless API calls. Regardless of the cause, blocking traffic from a specific source once it reaches a certain level is necessary for the overall health of the Google Apps system. It ensures that one developer's actions cannot negatively impact the larger community.
In the unlikely event that your API request fails, you'll receive an HTTP status code response. A status code of 403 has error information about incorrect input, and an HTTP status code of 503 has error information indicating which API quotas have been exceeded. These responses allow your custom application to detect these errors and take appropriate action.
The maximum number of calendar resources per account is 10,000.
For more information follow this link: https://developers.google.com/admin-sdk/calendar-resource/limits
Post a Comment for "403 Forbidden Error Adding An Event To A Google Calendar"