Hi,
I'd like to use MicrosoftAccountAuthentication to make offline request to a microsoft Live service.
var scopes = new[] {"wl.basic", "wl.calendars", "wl.signin", "wl.offline_access", "wl.emails"};
var authenticationOptions = new MicrosoftAccountAuthenticationOptions();
authenticationOptions.Scope.Add(scopes);
appBuilder.UseMicrosoftAccountAuthentication(authenticationOptions);
But I'm not able to store the refresh token which is returned in the authentication request. Looking at the katana source code, the MicrosoftAccountAuthenticationHandler is the one hanling the authentication request, But it looks like there is no way to
"extract" the refresh token (the access token is returned inside the MicrosoftAccountAuthenticatedContext).
Is there any way to get the refresh token??
thanks in advance,
fran
Go to the complete details ...