We are having two applications. One is written running on salesforce (App A and other app (App B) is using angularJS for UI.
When a user performs a certain actions in App A, App B has to be opened in a new tab. In this case, certain parameters have to be passed to App B from App A.
As App A and App B are running in different domain we can't use cookies to share the data.
So we wanted to pass it as a http header. Is it possible to read the http header in angular JS?
Please note that this different from AngularJS - accessing http headers. That was related when we access a http from angular JS. But we want to read the http headers passed to our angularJS application.
How can we read the HTTP headers sent to an angular JS application? Or is there any better approach to solve this issue?