I'm developing an application and I want to have it integrated with our Azure users.
When I test the app in dev, it logs in without any Issue, but when the app is deployed to a server, it show a few errors after authentication is done in the Microsoft website.
In the console, the following messages are shown:
info: System.Net.Http.HttpClient.Requisitions.LogicalHandler[100]
Start processing HTTP request POST https://192.168.3.219:8087/Account/CurrentUser
info: System.Net.Http.HttpClient.Requisitions.ClientHandler[100]
Sending HTTP request POST https://192.168.3.219:8087/Account/CurrentUser
info: Microsoft.IdentityModel.LoggingExtensions.IdentityLoggerAdapter[0]
IDX10242: Security token: '[PII of type 'Microsoft.IdentityModel.JsonWebTokens.JsonWebToken' is hidden. For more details, see Search - Microsoft Bing]' has a valid signature.
info: Microsoft.IdentityModel.LoggingExtensions.IdentityLoggerAdapter[0]
IDX10239: Lifetime of the token is valid.
info: Microsoft.IdentityModel.LoggingExtensions.IdentityLoggerAdapter[0]
IDX10234: Audience Validated.Audience: '5f22beba-3093-4b10-b926-052cfa3770d9'
info: Microsoft.IdentityModel.LoggingExtensions.IdentityLoggerAdapter[0]
IDX10245: Creating claims identity from the validated token: '[PII of type 'Microsoft.IdentityModel.JsonWebTokens.JsonWebToken' is hidden. For more details, see Search - Microsoft Bing]'.
info: Microsoft.IdentityModel.LoggingExtensions.IdentityLoggerAdapter[0]
IDX21305: OpenIdConnectProtocolValidationContext.ProtocolMessage.Code is null, there is no 'code' in the OpenIdConnect Response to validate.
info: Microsoft.IdentityModel.LoggingExtensions.IdentityLoggerAdapter[0]
IDX21310: OpenIdConnectProtocolValidationContext.ProtocolMessage.AccessToken is null, there is no 'token' in the OpenIdConnect Response to validate.
What else do I need to do to make it work?
Any suggestions?