hi
System.MissingMethodException: Method not found: 'Void Microsoft.IdentityModel.Tokens.Base64UrlEncoder.Decode(System.ReadOnlySpan
1<Char>, System.Span1<Byte>)'.
Try to use 8.12.0 package version of IdentityModel
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.12.0" />
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="8.12.0" />
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="8.12.0" />
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="8.12.0" />
hi
Is your Auth Server/OpenID website also logged out?
Can you share the code for the Microsoft Entra integration authentication?
eg context.Services.AddAuthentication().MicrosoftEntra()
Can you also share the har file of the logout process?
https://abp.io/support/questions/8622/How-to-enable-Debug-logs-for-troubleshoot-problems#answer-3a1a1c4b-691e-3403-98b9-5f23fa024759
Thanks.
hi
The log level still seems to be [INF] , can you change the LoggerConfiguration in all places?
var loggerConfiguration = new LoggerConfiguration()
.MinimumLevel.Debug()
.MinimumLevel.Override("Microsoft.EntityFrameworkCore", LogEventLevel.Warning)
.Enrich.FromLogContext()
.WriteTo.Async(c => c.File("Logs/logs.txt"))
Can you also share your AdministrationServiceHttpApiHostModule code?
Thanks.
hi
Can you share ASP.NET Core debug logs of /api/abp/application-configuration request?
https://abp.io/support/questions/8622/How-to-enable-Debug-logs-for-troubleshoot-problems
Thanks.
hi
Can you try to use the latest CLI?
https://abp.io/docs/latest/cli#installation
> abp get-source Volo.Abp.LeptonXTheme --version 3.3.4
[10:15:19 INF] Downloading source code of Volo.Abp.LeptonXTheme (v3.3.4)
[10:15:19 INF] Output folder: test-folder
[10:15:27 INF] Volo.Abp.LeptonXTheme.SourceCode (v: 3.3.4) package downloaded from https://nuget.abp.io/xxx/v3/index.json and saved to (/Users/maliming/.nuget/packages/)
[10:15:28 INF] 'Volo.Abp.LeptonXTheme' has been successfully downloaded to 'test-folder'
Thanks
Thanks. 👍
hi
What's baffling me is IDE publish of web project has issues and when done via command line no issues?
Maybe your IDE uses the outdated files.
so use dotnet publish command will works,
Thanks.
Thanks, I will check this case.