Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
0 answers
35 views

SwiftUI Google Sign-In Fails Simulator

I'm using SwiftUI with Firebase and Google Sign-In. The first Google authentication attempt works perfectly — the user is successfully signed in and appears in Firebase. However, after signing out and ...
Christopher Stone's user avatar
0 votes
0 answers
23 views

Creating Google Could OAuth client API for HP MFP Scan to Email

I have an HP Color LaserJet MFP E78330 with the latest firmware according to HP. Up till now we have been using "Scan to Email" without issues but the recent changes to OAuth requirements ...
Calista Jarratt's user avatar
-1 votes
0 answers
18 views

How i can handle better auth onApiError?

enter image description here I have configured better auth in backend: import { AuthContext, betterAuth } from "better-auth"; import { prismaAdapter } from "better-auth/adapters/prisma&...
Galib Hossain's user avatar
0 votes
0 answers
18 views

Google AuthorizedSession Bypassing Proxy

I'm trying to use AuthorizedSession to make API calls to Google Chronicle, I installed a squid proxy locally for testing porpuses. When I try to make a request: resp = self.client.get(url, params=...
Matias Pizzi's user avatar
0 votes
1 answer
29 views

Correct way to use GKE Connect Gateway client?

I'm trying to use the Connect Gateway client in python to connect to GKE but I keep getting 400, even if everything seemingly is correct. Example from google.cloud.gkeconnect import gateway_v1 client ...
Pithikos's user avatar
  • 20.4k
1 vote
1 answer
93 views

How to get access and refresh tokens from the code received by developers.google.com/oauthplayground/

I am trying to use OAuth2, but this line ResponseEntity<Map> tokenResponse = restTemplate.postForEntity(tokenEndpoint, request, Map.class); takes me to the exception of 400 — BAD REQUEST. I hit ...
user30039244's user avatar
0 votes
1 answer
59 views

Converting desktop Java gmail access app from password to OAuth2: AUTHENTICATIONFAILED

I have been using a desktop Java application (DigitGrabber) to peek into my email server (that's hosted by Google) to quickly ferret out the second factor six digit codes that so many sites are using ...
Dale's user avatar
  • 5,889
0 votes
0 answers
47 views

How can I securly add Client_secret to my code when authenticating a serverless desktop app on google cloud platform?

I'm trying to make a desktop app (without a server) with python that allows the user to do some automation in google sheets. I'm having trouble in managing the Client_secret file provided by google's ...
Karam Qasem's user avatar
0 votes
1 answer
88 views

Google Sign-In without Firebase — ApiException 12500 when using serverClientId in Flutter

I'm implementing Google Sign-In in Flutter without Firebase. I completed the setup on Google Cloud Console: Configured OAuth consent screen Created OAuth 2.0 Client IDs Added SHA-1 certificate ...
Ahmed Reda Ahmed's user avatar
0 votes
1 answer
83 views

How to fix an apparently expired refresh token?

I have a python app that uses gspread, and I haven't run it in about a year, and I believe it is failing because of an authentication problem. My diagnostic output is as follows: DEBUG:urllib3.util....
Tom Stewart's user avatar
0 votes
1 answer
111 views

Issue with OAuth 2.0 Client IDs

I'm running into an unexpected behavior in the IAM OAuth Clients group and wanted to see if anyone had insight. When navigating the gcp console to Google Auth Platform / Clients & APIs & ...
SpaceDandy's user avatar
0 votes
0 answers
48 views

AWS Cognito User Pool save Google user from mobile

I'm doing KMP project with AWS Cognito without libraries and I want to add Google sign in. I added Google in Federated identity provider sign-in and when I test it on webpage Cognito provides, it ...
tilen pintarić's user avatar
1 vote
1 answer
73 views

Google login with client and server on different domains (Nuxt SPA, ASP.NET Core)

It's been a few days I'm trying to find a way around this. It should be pretty common to host the client and server on different domains, as I've read about it. However, the specifics of how to make ...
Hossein Ebrahimi's user avatar
0 votes
0 answers
89 views

Problem authenticating users' youtube brand accounts

An issue appeared today on my app where when users try to link their youtube brand accounts through the google oauth flow, they get stuck after agreeing to the terms and conditions. They are not ...
musa khawaja's user avatar
1 vote
0 answers
85 views

Unable to Query Google Calendar API due to Authentication Issues; Error 400 and 403: "Method does not allow unregistered callers"

I'm trying to integrate Google Calendar API in my python script, but I keep getting authentication errors, and I'm not sure why. Errors: (running the python script in the terminal): An error occurred: ...
Pink Koala's user avatar
-3 votes
0 answers
44 views

Google Sign-In with FedCM

My company already has a website built with NextJS & we have implemented a couple of social logins (Facebook & Apple). Now we are looking into enabling Google Sign-in. So i thought the flow ...
Mitja Krašovec's user avatar
0 votes
0 answers
43 views

Create and control OAuth clients on Google Workspace/Google Auth Platform

We develop lots of web applications which our employees use to manage integrations between our various systems. Authentication for those applications is OAuth. Currently, we're using IBM Security ...
user1913559's user avatar
0 votes
0 answers
30 views

NextAuth with Google login on multi-subdomain setup

I’m building a multi-tenant SaaS app where each business is accessed via its own subdomain, like: https://[slug].myapp.com I’m now integrating social login with Google using NextAuth (Auth.js). As ...
Alfredo Costa's user avatar
0 votes
1 answer
73 views

Google OAuth2: Redirect URI mismatch even after copying the exact path [duplicate]

I was integrating Google OAuth2 into my app and kept getting this error: "Error 400: redirect_uri_mismatch" I copied the exact URL from my browser’s search bar and pasted it into both the ...
Atul Anand Oraon's user avatar
0 votes
1 answer
95 views

Google Sign-In on Android TV using CredentialManager and AuthorizationClient

Since the legacy Google Sign-In API has been deprecated, I replaced it with the new ​Credential Manager API. After integrating the new API, logged-in accounts on ​Android TV display correctly, and ...
kaelyn's user avatar
  • 11
0 votes
0 answers
24 views

How to manage access and refresh tokens with session wrapper without conflicts during OAuth authentication?

I'm using the access and refresh token flow for authentication in my app. The refresh token is stored in an HTTP-only cookie, while the access token is stored in memory (using Redux Toolkit) on the ...
Abdelrahman Emad's user avatar
0 votes
0 answers
96 views

I am facing an issue with Google Sign-Up using Clerk authentication

When I attempt to sign up directly with Google, I receive a 422 Unprocessable Content error in the network response. The error message states: "oauth_callback does not match one of the allowed ...
Aaryan02's user avatar
0 votes
0 answers
50 views

A full logout for users logged in via Appwrite's integrated Google OAuth provider

I have a web app in reactjs that uses the Google login that is integrated into Appwrite for user login. I use Appwrite's createOAuth2Token() to login to their account. And I use createSession() to ...
r j's user avatar
  • 31
0 votes
0 answers
32 views

"MismatchingStateError in Google OAuth2 flow: CSRF Warning! State not equal in request and response"

I am working with Google's OAuth2 API and using the google-auth-oauthlib library in Python. However, I keep encountering a MismatchingStateError when trying to complete the OAuth2 authentication ...
eymentakak's user avatar
-1 votes
0 answers
44 views

Login with Google Button doesn't render perfectly in its parent div and it flickers twice before rendering

I'm trying to integrate sign-in with google in my project but somehow the google button doesn't render perfectly in the center. Attaching video and code for reference. Any help is greatly appreciated. ...
Sudhanshu Kumar's user avatar
1 vote
0 answers
49 views

Issue in Google OAuth flow when using PKCE

I am trying to make a drive client for my college project and I am not very experienced in it. That's why I am building the application using electron so that I can develop the application as if it ...
UJWAL0747's user avatar
0 votes
0 answers
41 views

Vertex AI Feature Store - Unable to Fetch Historical Feature Values

I'm trying to retrieve historical feature values from Vertex AI Feature Store following the documentation. I'm running the example notebook from vertex-ai-samples. Everything works fine until running: ...
SenseiH's user avatar
  • 181
0 votes
0 answers
64 views

Why are my Google Files greyed out in the Google File Picker?

I'm building an app where the user has to choose a Google Sheet from their Google Drive. The Google Sheets in the drive are all greyed out no matter what MIME I use. Some MIME combos make all files ...
Hugo Wilson's user avatar
0 votes
0 answers
47 views

How do I add a multiple sso login into my Spring Boot/Angular application

I want to create a Spring Boot and Angular Application that should have three different authentication methods. These three are: Google, Microsoft Entra and Email/Password with a JWT instead of basic ...
DasShorty's user avatar
0 votes
1 answer
37 views

Flutter Google Auth - can it support both debug and release client setup?

For my Flutter Android app I am adding Google Authentication support, and I'm trying to understand how the Google Client setup supports debug and release versions of my app. From the Google client ...
user2868835's user avatar
  • 1,670
0 votes
0 answers
74 views

YouTube update not authorized in Google Apps Script

Google Apps Script offers to interact with the YouTube API by adding the YouTube Data API v3 as an advanced service and then using the YouTube class. This works fine for me when I handle requests like ...
Script Raccoon's user avatar
1 vote
0 answers
166 views

Why do I get the message "This app is blocked" and this app is the App Script Editor? [duplicate]

When trying to authorize a script in AppsScript IDE, I get the error: This app is blocked This app tried to access sensitive info in your Google Account. To keep your account safe, Google blocked ...
Boris Baublys's user avatar
0 votes
1 answer
108 views

Google Drive Ownership Transfer using API

I am trying to do the drive ownership transfer using API from the suspended user account to the manager email using a workflow automation tool called n8n and I am getting the error code 403 no matter. ...
user30006090's user avatar
0 votes
0 answers
25 views

Error 400: redirect_uri_mismatch - suddenly stopped working

I have successfully implemented google authentication of oauth in redirect mode in my web application s couple of months ago and it was working till today. Today I logged out from my application and ...
Marcin Żmigrodzki's user avatar
0 votes
0 answers
47 views

Google Admin SDK Reports API - HttpError 401 "Access denied" despite domain-wide delegation

I am trying to access the Google Admin SDK Reports API using a service account, but I keep getting the following error: HttpError 401 when requesting https://admin.googleapis.com/admin/reports/v1/...
code_taco's user avatar
0 votes
0 answers
54 views

why does it seem like supabase does not currently support third party authentication

I am currently building a blog web app and trying to setup the oauth using google and github. i've read the documentation on supabase which helped me to locate where to find the providers section. now ...
Mint Lord's user avatar
0 votes
0 answers
23 views

403 Forbidden Error on Google OAuth Callback

I am using Google Sign-In on my website. When I click the sign-in button, Google redirects to my callback URL with additional parameters, such as: sql Kopyala Düzenle https://sitename.com/...
MrtArt's user avatar
  • 1
0 votes
1 answer
48 views

Getting my Google service account's email address when I try getting my calendar's "primary" calendar

Using the following code, when I display the summary of the "primary" calendar, it displays the email address of the service account. I have shared my Google account's calendars with the ...
Todd's user avatar
  • 3,019
0 votes
0 answers
24 views

Google oauth with auth-code flow and redirect ux_mode always asks to approve scopes

I've implemented Google Oauth using the library @react-oauth/google. I'm currently implementing it like this: useGoogleLogin({ flow: 'auth-code', ux_mode: 'redirect', scope: GOOGLE_SCOPES, ...
ajyang818's user avatar
  • 505
0 votes
0 answers
28 views

Google OAuth2: "invalid_grant" - Malformed auth code in FastAPI backend

I'm a beginner implementing Google OAuth2 login in a React frontend with FastAPI as my backend. However, I'm receiving the following error when exchanging the authorization code for tokens: Token data ...
davidocodes's user avatar
0 votes
0 answers
27 views

Port and Protocol used by OAuth2 to return an access token from an access code?

I'm porting my app from Windows (where it works) to Linux (where it doesn't work). I can't figure out why, but my firewall is pretty strict. What port and protocol are being used to return the ...
Todd's user avatar
  • 3,019
1 vote
1 answer
78 views

How to connect with UrlFetchApp to Apps Script web app when I have "anybody with google account" options on

I have a very simple stand-alone google scripts project which is deployed as a Web App. It just contains two test functions: function doGet(e) { Logger.log(e); return ContentService....
Kuba D's user avatar
  • 137
0 votes
1 answer
47 views

Google Slides add-on vrerification oauth scope

I'm now oauth verification for the Slides add-on by google apps script. First, I use drive.readonly scope. OAuth Dev teams point use drive.file scope instead of drive.readonly. So I rewrite my app ...
Toshiyuki Kawashima's user avatar
0 votes
1 answer
61 views

Can Slides API use only drive.file scope

I oauth verification for the Slides add-on. OAuth Dev verification point next mail. Minimum Scope Requirement You requested the following sensitive scope(s): https://www.googleapis.com/auth/...
Toshiyuki Kawashima's user avatar
0 votes
0 answers
28 views

Migrating Google OAuth user data to keycloak schema

I am facing challege when migrating exist google-oauth user data to keycloak. I am currently working on a project involving a microservice architecture, with Keycloak serving as my OpenID Connect (...
user20112858's user avatar
0 votes
0 answers
35 views

How to Securely Store Google Drive API Client ID & Secret in a Flutter App?

I am developing a Flutter application that uses the Google Drive API via Google Cloud Console and OAuth 2.0 to access and store user data on their Google Drive. On Windows, I noticed that I need to ...
rel1nce's user avatar
  • 19
0 votes
0 answers
17 views

The problem is that the token is exposed when the code should be included in the URL

Currently I am implementing OAuth login via Supabase and googleCloud import { NextResponse } from 'next/server' // The client you created from the Server-Side Auth instructions import { createClient } ...
Hees's user avatar
  • 41
0 votes
2 answers
60 views

How do I persist Google credentials in ASP.NET Core

I followed this guide https://learn.microsoft.com/en-us/aspnet/core/security/authentication/social/google-logins?view=aspnetcore-9.0 which lead me here https://developers.google.com/api-client-library/...
Alejandro Huerta's user avatar
0 votes
0 answers
68 views

Service Unavailable when authorize brand account of Youtube

My app allows people to manage Youtube comments or manage Google Maps reviews for their Business profile location within the scope granted "https://www.googleapis.com/auth/youtube.force-ssl" ...
DuyDuc's user avatar
  • 26
0 votes
0 answers
29 views

OAuth Authorization Intent Fails in Android how to debug the Request?

I'm implementing OAuth authentication in my Android app using AuthorizationService from AppAuth. The problem is that the authorization intent fails with the error: Authorization Intent Failed: null. ...
schoon's user avatar
  • 3,373

1
2 3 4 5
205