In my Angular apps, I have two domains and I need to pass data from domain1 to domain2.
How I can do this ? I used localStorage but it doesn't possible to share in my second domain.
And using cookies work ? I saw no...
In my Angular apps, I have two domains and I need to pass data from domain1 to domain2.
How I can do this ? I used localStorage but it doesn't possible to share in my second domain.
And using cookies work ? I saw no...
Using localStorage or cookies doesn't work cross domain, for the security reasons.
What kind of data do you wish to pass on?
If it is your application logic, I would suggest you handle them at your server.