Can I have a single Meteor sign-in across subdomains? -
i have deployed site built using meteor 0.7.2, served @ both example.com , www.example.com.
if user signs in on 1 (e.g. www.example.com), not signed in on other (e.g. example.com).
is there way have single sign-in across 2 subdomains? or should redirect user away 1 of them?
thanks!
meteor uses localstorage (instead of session cookies) storing authentication information. localstorage not accessible other site, including super-domains. hence, redirecting, imo, best option here.
Comments
Post a Comment