Keychain
Get and set data in the iOS Keychain
Requires Cordova plugin: cordova-plugin-ios-keychain
. For more info, please see the Keychain plugin docs.
See also Secure Storage for more supported platforms.
https://github.com/ionic-team/cordova-plugin-ios-keychain
Stuck on a Cordova issue?
If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Installation#
- Capacitor
- Cordova
- Enterprise
$ npm install cordova-plugin-ios-keychain $ npm install @ionic-native/keychain $ ionic cap sync
$ ionic cordova plugin add cordova-plugin-ios-keychain $ npm install @ionic-native/keychain
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. Learn More or if you're interested in an enterprise version of this plugin Contact Us
#
Supported Platforms- iOS
#
Usage#
ReactLearn more about using Ionic Native components in React
#
Angularimport { Keychain } from '@ionic-native/keychain/ngx';
constructor(private keychain: Keychain) { }
...
this.keychain.set(key, value).then(() => { this.keychain.get(key) .then(value => console.log('Got value', value)) .catch(err => console.error('Error getting', err));}).catch(err => console.error('Error setting', err));