I have a query regarding to session maintain between application and web browser.
I’m developing an iPhone application and there is also one website (in wordpress) same for this application.
My question is , is it possible to show user login in mobile’s web browser if he/she is login into application from same mobile device?
In short, I want to know where is this session stored? In application or in device? If it is in device then how can I check same for the web browser?
Cookies are stored per app, not per device. Safari has its own sandbox whereas each native app runs in its own sandbox, otherwise Safari’s security model would be compromised.
So for your scenario, this is how you should be able to make it work (I haven’t tried it though):
myapp://mydashboard
Hope it helps.