178 questions
2
votes
1
answer
194
views
Using Windows Credential Manager (CredReadW) in VBA
I am trying to retrieve a Personal Access Token (PAT) stored in Windows Credential Manager using VBA for Jira integration. I have successfully written credentials using CredWriteW, but my CredReadW ...
0
votes
0
answers
98
views
Google Credential Manager Android Kotlin API ends up in infinite loop on internet unavailability
I have implemented Google SignIn using Google Credential Manager Kotlin API for Android. The API works well in all positive scenario for signing in a user, but when the Internet is not available, I ...
Advice
1
vote
1
replies
156
views
The difference between Credential Manager and Windows Vault
I'm confused with the difference between Credential Manager and Windows Vault.
Windows says
Credential Manager lets users store credentials relevant to other systems and websites in the secure ...
0
votes
1
answer
477
views
How to create a Git credential helper? (Windows)
I'm trying to create basic credential helper for Git (Windows version).
Based on documentation it seemed to be trivial:
I've set variable triggering own script/app for the authentication
set ...
1
vote
0
answers
181
views
Credential Manager throwing error : "failed to retrieve an id token" - Android
val signInWithGoogleOption = GetSignInWithGoogleOption.Builder(
serverClientId = "xxxxxx-xxxxxxx....." // DEV
).build()
val request = GetCredentialRequest.Builder()
....
0
votes
0
answers
95
views
Unable to load credentials when using CredentialManager
Could someone please explain why I do not appear to be able to retrieve the credentials password when using the CredentialManagement package? The "Load" method consistently returns false.
...
0
votes
0
answers
224
views
How to register client's webauthn credentials in a browser keepass alike authenticator
The webauthn.io website demonstrates webauthn registration and authentication. In my case, the credentials are stored in a password manager (Enpass). The link between the password manager and the ...
0
votes
1
answer
168
views
How to remove accounts from the Google sign-in BottomSheet selector?
I'm implementing sign-in with the Credential Manager. If I sign in with multiple accounts with email and password and those accounts become unavailable, those accounts remain in the selector. If I try ...
0
votes
1
answer
172
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 ...
-3
votes
2
answers
143
views
Git push problem: credentials don't match (error 403)
i am having problems with pushing my local repository to my remote repository.
(GingerToe is my personal account and BananaOak is my account i made under university email)
i am getting a weird error ...
0
votes
2
answers
96
views
Google Signin on Android, Crash when clicking outside the popup
I have this very simple implementation of Google Signin
val signInWithGoogleOption =
GetSignInWithGoogleOption.Builder("*******.apps.googleusercontent.com")
....
1
vote
1
answer
438
views
Google Sign-In with Credential Manager "No credentials available" error
I'm implementing Google Sign-In using the new Credential Manager API, but I'm encountering an issue where the first login attempts consistently fail with "No credentials available" after app ...
1
vote
0
answers
408
views
Firebase Google Sign-In returns null email despite receiving other user data (name, photo)
Issue
I'm implementing Google Sign-In with Firebase Authentication on Android using the new Identity Platform Credentials API. While I successfully receive the user's name and photo URL, the email is ...
0
votes
0
answers
132
views
Using Credential Manager for google login, keep getting "invalid user" after successfully sign in
I am trying to archive sign in with google account, was able to do it.
But the problem is, after one time sign in successfully, I cannot sign in with the account.
It looks like only new accounts works,...
0
votes
1
answer
124
views
Android: How to check if the user is logged in to the Play Store
Using Kotlin, I want to verify that the user is logged in to the PlayStore before sending it to update the app.
I'm using credential manager because the other options I could find are deprecated.
...