I´m having trouble to get SSO working in my javascript based addin for the mobile outlook app.
With the example here
https://github.com/OfficeDev/outlook-add-in-attachments-demo
And this documentation
Its possible to get the SSO token in the Windows and Web Outlook client, as long as it doesnt open up the dialog for the OAuth way, which will result in an error inside the dialog after i selected my O365 account (on mobile too) with the following message
TypeError: The Object doesn't support property or method "displayDialogAsync"
On mobile client, the following APIs are not available
Office.context.auth.getAccessTokenAsync
OfficeRuntime.auth.getAccessToken
And the following API which is working on the mobile outlook app is just very limited in its scopes which is not useable for me
Office.context.mailbox.getCallbackTokenAsync
So how can i optain a silent token for the current mailbox user in the mobile outlook app?