I am currently evaluating if supertokens is the ri...
# support-questions-legacy
d
I am currently evaluating if supertokens is the right tool for me. I want to support one account to be used by multiple different apps. (from different domains) I think the way to go about this would be to have all the frontends connect to one single backend. Is this the correct way to go about this? If so, what do I place as the appName and websiteDomain in the appInfo object on my backend?
r
hey @dottemechy
The best way to go about this would be to have separate backends for each of the apps, and connect all those backends to the same supertokens core.
Would that be something that works for you?
d
it would. Are there any special considerations to keep in mind when implementing two backends?
r
not really. Everything should work smoothly
d
gotcha. In that case, when implimenting a backend for a react-native app there is no websiteDomain, yet the docs have it listed as compulsory. (according to the docs here https://supertokens.com/docs/thirdpartyemailpassword/appinfo) The docs on the quick setup (https://supertokens.com/docs/thirdpartyemailpassword/quick-setup/frontend) omit the websiteDomain from the frontend init function. What do I place as the websiteDomain on the backend for a react-native app?
r
for reset password link, do you intent to deep link it to your app? Or open a website where the user can enter their new password?
d
I'd have it open on the website.
r
so the domain of that website should be the value of websiteDomain
d
gotcha
thank you