-
Notifications
You must be signed in to change notification settings - Fork 792
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Keychain value sometimes returning nil in background even with .afterFirstUnlock accessibility #342
Comments
I'm happy to report back that changing the service name when initializing an instance of Keychain fixed the issue. It looks like somehow a previous keychain's accessibility settings created with the Locksmith pod were overriding all settings no matter what. |
@Daltron Interesting, this could be the cause of what I'm seeing. Even accessible always isn't working in production. Were you able to upgrade/fix-it in place or did you have to remove the entire keychain and start over? |
@RamblinWreck77 This happened such a long time ago but if I remember correctly, I had to explicitly change the service name of the keychain and start from scratch. That may not be ideal for your scenario but it worked out ok for mine. |
@Daltron Interesting, my library doesn't have a "service name" parameter. I'll have to dig into how this one works and see what it's really setting. |
@Daltron Do you have any thoughts about having two Keychains (assuming I use KeychainAccess and set different serviceIDs), one .whenUnlocked for secure stuff and .always for stuff that doesn't need to be secure? I was wondering if you tried something similar. |
@RamblinWreck77 I would still use just one keychain. There is no harm is storing stuff as secure even when it doesn't need to be. |
Why I use the keychain manager
To store an access token for each request that is made within the application. If the request is unauthorized, then the user is logged out of the app and required to sign back in.
Background
For the past several months, the app I have been working on has been going through a state where some users are getting randomly getting logged out while in the background because the requests they are making are sometimes unauthorized because I believe the access token in the keychain is not available at the particular time they need it. It's nearly impossible to reproduce as it happens anywhere between 1-24 hours after the app is opened.
How I use KeychainAccess
I have the
.afterFirstUnlock
accessibility in my service, but yet the keychain appears locked at certain times. I can 100% confirm that all devices that are experiencing the issue have met the "first unlock" requirement. Is there something I'm not doing right with KeychainAccess?It may also be worth mentioning that I just recently converted from this library: Locksmith. Could there be any possibility that the accessibility settings from here could be clashing/overriding KeychainAccess's accessibility settings?
Any help would be GREATLY GREATLY appreciated! 😄
The text was updated successfully, but these errors were encountered: