Dear @sambooo ,
I have try your source code. But got some difficulties when running the application. Would you kindly help me with the issue.
About Application Key in Startup.cs
As inside the source code the configuration has been removed. I replace webconfig declaration with just the WebAPI key from steam.
Eg,
var key = "MyApiKeyIssuedFromSteam";
var options = new SteamAuthenticationOptions
{
ApplicationKey = key
};
AuthenticatedResult is null in HomeController's Index.
I have debug this stage.
var authenticateResult =
await HttpContext.GetOwinContext().Authentication.AuthenticateAsync("ExternalCookie");
Return url of ChallengeResult
When i call the ChallengeResult from AuthoriseSteam() of HomController. the return is route to
[Localhost]/Home/AuthoriseSteam.
Did I miss out any declaration. Could you guide me with more info? Thanks.
Dear @sambooo , I have try your source code. But got some difficulties when running the application. Would you kindly help me with the issue.
var key = "MyApiKeyIssuedFromSteam";
var options = new SteamAuthenticationOptions { ApplicationKey = key };
var authenticateResult = await HttpContext.GetOwinContext().Authentication.AuthenticateAsync("ExternalCookie");
Did I miss out any declaration. Could you guide me with more info? Thanks.
Best Regards, KYI LIN TUN