another question that came up: why don't you update v6 with all these fixes
This is an enhancement of leptonX, not a bug, If it is a bug, we will release a patch version like (6.0.x).
You can consider use abp new myproject -v 7.0.1
command to create a specific version of the project
Sorry I thought you were talking appsettings.secrets.json
Hi,
I made an example and share it to you, you can check it.
You can also try with
context.Services.AddAuthentication()
.AddOpenIdConnect("oidc", options => {
options.BackchannelHttpHandler = new HttpClientHandler
{
ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator
};)
Hi,
You can check it: https://support.abp.io/QA/Questions/4483/After-login-It-is-not-redirecting-to-swagger-page#answer-0dac1928-15ab-ea7a-ad93-3a093a97493f
And need to check if all volo packages are upgraded to 7.0.0.
Also run abp clean
and dotnet build
command
Hi,
Hi, you can add options.AddDataMigrationEnvironment();
to the DbMigratorHostedService like:
https://github.com/abpframework/abp/blob/dev/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.DbMigrator/DbMigratorHostedService.cs#L31
Hi,
As my understanding, you want to use the access token to access API.
Now the next step is I believe is to exchange that token with client application to login the user and receive client application access token which we can use for authentication and authorization in the client api I believe the endpoint to exchange that application token is clientapp.com/api/identity/external-login
Not actually, you can use the token to access any allowed API scope.
2 Configure scope
3
Add scope in the oAuthConfig of the react native app
Hi,
You can try it, but we don't recommend you to do this