Reputation: 2184
I'm trying to create a WP8 application which authenticates against a portal and gets an authentication cookie.
I would like to be able to store this cookie in some "common storage" within the phone, so that other applications are able to access it as well. This way, once the application authenticates against the portal, other apps which need access to this cookie can simply go to the common storage and fetch it rather than the authentication application "passing" the cookie around.
In other words:
From what I have read, there is no easy way to do so. It seems there isn't a common storage area available for all apps. Is the above possible?
Thanks
PS: The place where photos are stored is accessible to other apps. Is that specific to that folder? IF so, can we put other content in it?
Upvotes: 0
Views: 311
Reputation: 46
You could try storing the files in a skydrive folder. Windows Phone now has a Live SDK that allows you to push and pull files from a users cloud storage.
Check out this link http://msdn.microsoft.com/en-us/library/live/hh826550.aspx
Upvotes: 1
Reputation: 412
As for now, this isn't possible. Each app on Windows Phone becomes its own 'Isolated Storage' which is not accessible for other apps.
Upvotes: 1