I am trying to create a Windows Store app which needs an authentication through OAuth2.
Prefered way should be WebAuthenticationBroker:
const string url = @"https://my.server.srv/mobile-auth/index.pl?"
+ "client_id=CLIENTID"
+ "&redirect_uri=https%3A%2F%2Fmy.server.srv
+ "&response_type=code"
Uri startUri = new Uri(url);
Uri endUri = new Uri("https://my.server.srv");
WebAuthenticationResult webAuthenticationResult = await WebAuthenticationBroker.AuthenticateAsync(WebAuthenticationOptions.None, startUri, endUri);
if (webAuthenticationResult.ResponseStatus == WebAuthenticationStatus.Success)
{
string token = webAuthenticationResult.ResponseData;
}
but the token is empty. There should be the server response, which is
code=a-secret-code&expires_in=600&token_type=bearer
passed in GET, which is compilant to OAuth2.
Do you know how to get that parameters, please?
EDIT: SOLVED. It started to work after passing "https://localhost" as redirect_uri / endUri.