We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
i tried basic setup like await Keychain.setGenericPassword( this.state.username, this.state.password, { accessControl: this.state.accessControl, securityLevel: this.state.securityLevel, storage: this.state.storageSelection, } ); //the popup not raising
The text was updated successfully, but these errors were encountered:
Because you are using the wrong function. Try this:
const {username, password} = this.state; Keychain.setSharedWebCredentials(webCredentials, username, password) .then(()=>{ //implement logic when success here }) .catch((error)=>{ //implement logic when fail here });
Sorry, something went wrong.
@hieuvh3011 I tried the same thing but I get the same error as you reported in issue #402
This is only possible with a kSecAttrSynchronizable-flag, unfortunately this is not implemented by the plugin #156
kSecAttrSynchronizable
No branches or pull requests
i tried basic setup like
await Keychain.setGenericPassword(
this.state.username,
this.state.password,
{
accessControl: this.state.accessControl,
securityLevel: this.state.securityLevel,
storage: this.state.storageSelection,
}
);
//the popup not raising
The text was updated successfully, but these errors were encountered: