Brett Huffman
Jake - did you ever find a solution to this? I’m having the same problem. I can’t imagine how they got this to work.
Brett Huffman
Jake - did you ever find a solution to this? I’m having the same problem. I can’t imagine how they got this to work.
Paul Snyder
I am getting the error “ClientId is not declared. It may be inaccessible due to its protection level” from the line “ClientId = _clientId,”.
My web.config file has the <appsettings> section before the <system.web> inside <configuration>. thoughts?
Andy
Replace the following part
var tokenClient = new TokenClient($"{_authority}/v1/token", _clientId, _clientSecret);
var tokenResponse = await tokenClient.RequestAuthorizationCodeAsync(n.Code, _redirectUri);
with this:
var client = new HttpClient();
var tokenResponse = await client.RequestAuthorizationCodeTokenAsync(new AuthorizationCodeTokenRequest
{
Address = $"{_authority}/v1/token",
ClientId = _clientId,
ClientSecret = _clientSecret,
Code = n.Code,
RedirectUri = _redirectUri,
});
Eric Kreger
I have run into an issue where i have a valid user but their permissions have been removed from the application in Okta. After the user logs in they receive the following error:
“OpenIdConnectMessage.Error was not null, indicating an error. Error: ‘access_denied’. Error_Description (may be empty): ‘User is not assigned to the client application.’. Error_Uri (may be empty): ‘’.”
Researching that issued i found that i need to implement the OpenIdConnectAuthenticationNotifications AuthenticationFailed method in the startup. When i do that and try to redirect the user to a Access Denied page, I am receiving a 400 Bad Request on the page. Can anyone shed light on how to address this scenario?
Shawn Xie
Hello, how can I pass uilocales that contains language information to authentication service?
Dave Ayiku
I followed the example above and I am receiving an error in the Startup.cs class file. The error is on the UserInfoClient
the type or namespace ‘UserInfoClient’ could not be found
Is there any information on how to fix this issue?
Dave Ayiku
For anybody tracking this item, I was able to resolve the issue reported by using the earlier release (version 3.8.0) for the IdentityModel.
Satish Neelakantam
I am integrating OKTA in the existing .NET Framework Web Application. I have followed all the steps as mentioned in this Article. Currently the application is using AD Authentication. All the authentication functionality was written in Session_Start of Global.asax.cs page. So, I have added the below lines of code in the same event to have OKTA authentication.
if (!Request.IsAuthenticated)
{
HttpContext.Current.GetOwinContext().Authentication.Challenge(
new AuthenticationProperties { RedirectUri = “/” },
OpenIdConnectAuthenticationDefaults.AuthenticationType);
}
I am getting the following error:
IDX20803: Unable to obtain configuration from: ‘[PII is hidden]’.
Help required please.
Sudheendra Rao
UserInfoClient is not getting resolved for me. it Say Type or namespace could not be found
Sudheendra Rao
how to get the logged in username in a label of about page.
Please help
Sudheendra Rao
I am still not able to logout with this code. I have a login button on Navigation Bar and when i click on page load i call your code and instead of going to default from Logout page it goes to page not found
satish p
I am getting error like TokenClient doesnot contain constructor that takes 3 arguments.
var tokenClient = new TokenClient($"{_authority}/v1/token", _clientId, _clientSecret);
Sarjen Test
Is there a way to implement it using visual studio 20012 and .net framework 2.0 or 3.5?
Sarjen Test
Is there a way to implement it using visual studio 20012 and .net framework 2.0 or 3.5?
Frank Ruscil
Any asp.net forms "intranet"examples?
Niraj Khose
I have same issue with just instead on access_denied I am getting invalid_grant. I am using .NET 4.5.2. Has this been resolved?
Niraj Khose
Same error. Has this been resolved?
David Laskey
Frustrating. Still left with one error. In the startup.cd file
The line : var userInfoResponse = await userInfoClient.GetAsync(tokenResponse.AccessToken);
is throwing : Cannot assign void to an implicitly-typed variable
Richard Corkery
@disqus_Z2M5ijnkWw Were you able to fix the log out issue?
Richard Corkery
@alainosoriorodriguez Were you able to fix the log out issue?