All Questions
Tagged with google-oauth android
892
questions
-1
votes
0
answers
24
views
Google Authentication via firebase
I am building an IOS and Android app and authenticating Google sign-in with Firebase. I am also using Google Cloud Console to automatically create client IDs by firebase. However, I am facing an issue ...
0
votes
0
answers
22
views
OAUTH for Google Places API (New): Avoid having to grant Android automation tool Tasker access to my Google account after every restart
I am using the Android automation app Tasker (joaoapps.com) to control different APIs (Spotify, Poweramp, Tomorrow.io weather) for an Android device in my car.
I also use Tasker to control the "...
0
votes
0
answers
55
views
OAuth consent screen is necessary for android google sign-in?
I'm developing an Android app with Firebase and Jetpack Compose. My local debug sign-in (emulator and real device) is successful, but only internal testing is failing.
I registered OAuth consent ...
0
votes
0
answers
41
views
using google authentication in the Automation testing of android application
I am working on the automation testing using Appium and Java for an Android application. The Android application uses Google authentication for the users. I have disabled the 2 factor authentication ...
0
votes
0
answers
49
views
Unable to implement "Sign in with Google in React native Expo"
I have been trying to implement google sign in expo go and I have followed almost all the tutorials on youtube and configured it correctly but everytime I click on the button if using androidClientId, ...
0
votes
1
answer
100
views
Android OAuth 2.0 Client can't verify app ownership
I am trying to verify app ownership in OAuth client in Google Cloud Console -> APIs & Services -> Credentials -> OAuth 2.0 Client IDs. But I get the error "This client is not ...
0
votes
0
answers
26
views
ERROR Error during sign in: [com.google.android.gms.common.api.ApiException: DEVELOPER_ERROR]. Using without firebase. Trying to signing with google [duplicate]
I'm using Google Sign-In with the following setup:
Library: react-native-google-signin/google-signin: 13.1.0
React Native version: 0.75.4
Credentials: I've added the required OAuth 2.0 credentials for ...
0
votes
0
answers
33
views
Unable to redirect back to Kotlin Mobile app after login using Google Account
I have created a Kotlin Mobile app to Use Gmail API. But after login with Google account it will not automatically redirect back to the app. Can you please help me with this?
`This is my source code.
...
0
votes
0
answers
66
views
Integrate Gmail API to Android Kotlin app
I was trying to implement email sending functionality using Gmail API in a Kotlin Android application. I was able to implement Google one-tap sign-in. I'm getting the token from the onActivityResult() ...
0
votes
0
answers
76
views
What is the default redirect uri for Google Sign-In on Android?
Google discourages using a custom redirect url for security reasons. Thus, if you don't enable custom redirect urls, there's presumably a correct default redirect url, and any other redirect url leads ...
0
votes
1
answer
311
views
CredentialManager androidx.credentials.exceptions.NoCredentialException: No credentials available when using child's device managed by Family Link
I am implementing Google Sign In with Firebase Authentication through the use of Credential Manager.
Below is my implementation:
suspend fun signIn(): AuthResult? {
val credentialManager = ...
0
votes
0
answers
91
views
How do I check is there is logged in accounts on the phone?
I have a problem with Google Auth.
If the user has signed in Gmail account on the phone I want to open a Credential Manager so that the user could choose an account he wants to use to authenticate in ...
1
vote
1
answer
127
views
Google credential manager for API 26
I try to setup Google Authentication using Credential Manager from Google. But when I write the code below it says that it works only for API 34 and above. Instead it looks like they recommend Google ...
0
votes
0
answers
59
views
GMail API over Android: the name must not be empty: null
I am trying to send a Gmail with Google-API for Android.
For that, I authenticated the current user as instructed by Google documentation:
val gso = GoogleSignInOptions.Builder(GoogleSignInOptions....
1
vote
0
answers
73
views
How can I fix Google OneTapClient's errors 16 (Cannot find a matching credential)?
I'm trying to code an Android app using Jetpack Compose.
I've been following a tutorial to let the users authenticate with Google and, up to a few days ago, everything was working just fine.
I've ...