If I have my desktop running an O365 office app in Excel(desktop version), when I open another instance of Excel(desktop version), is it possible for the same app in both instances to share some session information?
I had a look here https://github.com/OfficeDev/Excel-Add-in-JavaScript-PersistCustomSettings and thought that browser cache might work but looks like it doesn't.
My scenario for the above is:
1) Open Excel(desktop version).
2) Run my Excel app.
3) Perform a login.
4) Persist login information.
5) Open another Excel workbook(desktop version) which contains some saved data published by my Excel app previously.
6) Run my Excel app.
7) I would not want to login again since I have already logged in, in step 3.
So, where can I persist the login information so that regardless of Office desktop or Office on browser, I can reuse the login info?
Thanks in advance!