All Questions
Tagged with google-oauth google-calendar-api
479
questions
0
votes
1
answer
54
views
How to authorize python script for google calendar access
My university has a site where it uploads the courses, but it lacks direct calendar support.
I wrote a python script to automate the addition of the courses to my calendar and my colleagues asked me ...
0
votes
0
answers
68
views
OAuth2 authorization in Angular 18
You can see my code below:
private accessToken: string | null = null;
constructor(private http: HttpClient) {
this.initGoogle();
}
initGoogle() {
google.accounts.id.initialize({
...
0
votes
1
answer
34
views
Firebase token to access google calendar api from custom backend
I'm not sure if I can do this but here is my problem. I have a mobile application that needs to sync some data to my custom backend. I use Firebase auth to authenticate the users with the Google ...
0
votes
1
answer
45
views
Error when using google calendar API "Request had invalid authentication"
I'm using this API to get some events:
https://www.googleapis.com/calendar/v3/calendars/primary/events?timeMin={time}&timeMax={time}Z&timeZone={zone}
And using a access token as a Bearer token....
0
votes
0
answers
70
views
How to debug error 401/403 for Google Calendar API?
{
"error": {
"code": 403,
"message": "Method doesn't allow unregistered callers (callers without established identity). Please use API Key or other form of ...
0
votes
0
answers
46
views
Remove access to shared calendars / Delete calendars to a specific user
I was unable to find how to remove or delete a calendar for a user in my workspace.
I think I understand how to determine which calendars are shared with a specific user, with the help of this thread: ...
0
votes
0
answers
70
views
Expected OAuth 2 access token, login cookie or other valid authentication credential. Net project
So I have been trying to implement a google calendar meeting assignments specifically for authenticated user.
Here is how it goes:
I have a Vite React.JS project with google auth implemented (it can ...
0
votes
0
answers
34
views
Stay signed in Google Cloud Calendar API
I have a web application that allows me to see the calendar of the Google account that logs in.
I have this code:
<script>
let config;
async function loadConfig() {
...
1
vote
1
answer
92
views
Google Cloud calendar API connection error
I am developing a web application in which you can see your calendar from your Google account.
My calendar is inside an iframe within the main page (index.html) and is activated when pressing a button
...
0
votes
0
answers
42
views
Fetching infromation from Google Calendar API to turn my calendar into a personal income calculator
As a gig artist, I write all my gigs in Google Calendar, and I'm tired of having to read through 40 gigs/month to calculate my monthly income.
I want to create a webpage that will access my calendar, ...
0
votes
1
answer
34
views
Consent Screen Only Asking for Email SSO - Not Google Calendar permissions
No matter what I do, I can't seem to get the consent screen to show the Google Calendar permissions.
Consent Screen
I'm in testing mode and I'm using test users. Still, I can't seem to figure this out....
0
votes
1
answer
175
views
How to Sync Google Calendar Events Using Push Notifications?
I have completed implementing the watch function and successfully implemented receiving push notification as well. However, I want to synchronize the calendar after receiving the push notification, ...
1
vote
1
answer
108
views
Google Calendar API expiration time for refresh_token?
In my nodejs server I am using '@google-cloud/local-auth' library to create events in calendar,
when I authenticate to google calendar it returns me a client with refresh_token. What is the expiration ...
0
votes
0
answers
57
views
How to authenticate Google Calendar API on device with no input?
I am developing a smart mirror app that shows events from a Google calendar. The smart mirror has no input device. I was hoping to use the OAuth 2.0 for TV and Limited-Input Device Applications ...
1
vote
0
answers
50
views
I have a question regarding Google Calendar API logic
I'm testing Google Calendar authentication-related logic in Java. I'm not sure if I'm misunderstanding the concept, but I've been unable to resolve the issue for several days now.
My code is as ...