I've created a SharePoint-hosted App for SharePoint Online (Office 365) that used the Exchange Web Services (EWS) to retrieve some information about a user's mailbox. Currently I'm authenticating to EWS using hardcoded credentials, which (of course) isn't safe. I want to use the credentials of the actual logged in user to authenticate to EWS, so basically achieve Single Sign-On (SSO). Does anyone know if that is possible?
On MSDN I read about a scenario that described accessing EWS using a "service" account, that has impersonation rights. This isn't suitable for a SharePoint-hosted App, since the service account credentials will be accessible by anyone.
Does anyone know how to do this? I prefer not to go the Provider-hosted/auto-hosted route.