Giter VIP home page Giter VIP logo

Comments (4)

HarishJangra avatar HarishJangra commented on May 31, 2024

Hi @rajinpangkalpundai
You can definitely store anything in keychain due to library restrictions the keys in the store will be username and password only. You can refer to react-native-keychain for more info.

So You can store mobile or other info as username and password

and when you get the stored data here you can change like this

export const getLoginCredentials = async () => {
	try {
		const credentials = await Keychain.getGenericPassword();
		console.log("keychain get data ", credentials);
		if (credentials) {
			return {YOURKEYONE: credentials.username, YOURKEYTWO:credentials.password};
		}
		return false;
	} catch (e) {
		console.log("Cannot retrieve keychain data", e);
		return false;
	}
};

replace YOURKEYONE & YOURKEYTWO to your custom keys.

from react-native-easy-starter.

rajinpangkalpundai avatar rajinpangkalpundai commented on May 31, 2024
YOURKEYONE

i've checked react-native-keychain, and yes, it has limitation to only store in 'username' and 'password'. Another question is:
Is it possible to use AsyncStorage on 'Services' folder to save my login credentials and later use it to maintain the app state (session)?

Thank you for your quick reply, i really appreciate it.

from react-native-easy-starter.

HarishJangra avatar HarishJangra commented on May 31, 2024

Yes you can use it in whatever way you want.

from react-native-easy-starter.

rajinpangkalpundai avatar rajinpangkalpundai commented on May 31, 2024

Yes you can use it in whatever way you want.

Awesome! thanks for your help

from react-native-easy-starter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.