20,011 questions
-5
votes
0
answers
48
views
Having some issues with Google Calendar API integration
I'm making a Web app as part of a Capstone project. I decided to use the Google Calendar API with JavaScript, not realizing how complex Google's APIs are. Add that to the fact that I'm having to rush ...
0
votes
0
answers
38
views
How to get user data with PHP8 Google client + Javascript auth code
I have a working Vue application which log user in via Google Javascript SDK. This get a token/code (I really dont how they call it). Then I send this token to the PHP application which uses Google ...
0
votes
0
answers
11
views
400 Bad Request error when verifying challenge response with Google's Verified Access API
I am using the following code to send a challenge response to Google's Verify API for verification. However, I am encountering an error:
Verification Failed: 400 Bad Request
Response: {
"error&...
1
vote
1
answer
42
views
Get full responses from api call
Im trying to get a response from the Google Cloud Identity API and fill out a Google sheet with specific results such as policy name, setting name and values from the settings. The code is below and ...
-1
votes
0
answers
27
views
Find a table with custom unique id in a google doc with googleapis nodejs package
For a project I am working on, we are using Google Docs as a tool for a review process.
Somebody creates a document in our platform using a Rich text editor and then for the review process, since ...
0
votes
0
answers
41
views
Google Identity Platform OIDC SSO setup with 3rd party apps
We are required to connect the Google Identity Platform via OIDC with our two 3rd party web apps. When the user attempts to log in via 3rd party app then the user should be redirected to a custom ...
2
votes
1
answer
53
views
Google Cloud VM Stops Responding During Build Process with "googleapis" Package
I am encountering a critical issue with my Google Cloud VM instance when using the googleapis npm package in my NestJS project. The problem arises specifically when I run the npm run build command to ...
0
votes
0
answers
31
views
Google App script send data to backend, how to authorize request?
I'm using a google app script to get data on change and sending it to my backend. All of it is working correctly but now I want to add authentication meaning that the request is coming from the app ...
0
votes
0
answers
21
views
Problem with google login using react native
I'm trying to implement google login on my project made with React Native, both for android and ios.
From how I wrote the code, the google API seems to work: I open the app, click "login with ...
0
votes
0
answers
23
views
Difference Between Google Drive /open and /file API Endpoints? [closed]
I would like to know the difference between the APIs for drive.google.com/<open or file>?.
I have searched but couldn't find sufficient information due to my lack of skills.
If anyone knows, ...
0
votes
0
answers
13
views
Are there any ways to retrieve historical Google Street View image through API?
The Google Street View API only allows us to download the most recent street view images if we use coordinate information. I saw someone said you could get access to historical street view images if ...
1
vote
1
answer
45
views
for loop in Google Apps script to add specific values from a json response to a Google sheet
I've been trying to pull specific values from an API JSON response into a Google Sheet using the Cloud Identity API, specifically the policies part. The API response is working and im getting the ...
1
vote
2
answers
27
views
Google-pay-button paymentRequest typeErrors when building
I've created this stackBlitz example where its building fine, no errors. I have uploaded this to a repository on github for me to clone and build locally or via github.dev /stackBlitz dev.
On each of ...
0
votes
1
answer
44
views
Google Picker popup window not loading - Django
I am using Google's documentation on the Google Picker at https://developers.google.com/drive/picker/guides/sample and the popup for google drive is not opening when i use this code in django template....
1
vote
1
answer
24
views
How to verify a token received from chrome.identity.getAuthToken() in the backend?
I am writing a Chrome extension that needs to verify user identity using Google so the user can sign in.
According to Google's docs, I should use chrome.identity.getAuthToken(). Login works ...