So I have two AngularJS applications, and I want to have an initial sign in at application 1, which then redirects to application 2 along with a token.
One way to fix this is by sending the token in the URL to the second application. But what if I want to keep the token hidden, is there a way to parse data from one AngularJS application to another without having it show within the URL.
PS: The database is not an option unfortunately :'-(
URL. Something likewww.abc.com/token/0001would therefore not do. @aet: Cookies would be a solution. Do you have some great examples for how this would work? (Searching solution now, but still ;-) )