Activities of "maliming"

Hi

Can you use English?

You can share the logs file with liming.ma@volosoft.com

Thanks.

hi

Can you share a test project to show the problem?

I will download and debug it.

liming.ma@volosoft.com

Thanks

Great πŸ‘

Hi

Thanks. I have refunded your question ticket.

Answer

Hi

customer’s IT administrator

Do they have any documentation of sending emails via OAuth2?

Thanks.

Answer

hi

You can share your latest project that can reproduce the exception.

Thanks.

πŸ‘πŸ‘πŸ‘

hi

You should be able to get an access token after oidc is signed in.

Can you confirm this first?

Thanks.

 //(options =>
 //{
 //    options.DefaultScheme = "Cookies";
 //    options.DefaultChallengeScheme = "oidc";
 //})
 //.AddCookie("Cookies", options =>
 //{
 //    options.ExpireTimeSpan = TimeSpan.FromDays(365);
 //    options.CheckTokenExpiration();
 //})
 .AddAbpOpenIdConnect("oidc", "XCore", options =>
 {
     options.Authority = configuration["XAuthAuthServer:Authority"];
     options.RequireHttpsMetadata = configuration.GetValue<bool>("XAuthAuthServer:RequireHttpsMetadata");
     options.ResponseType = OpenIdConnectResponseType.CodeIdToken;

     options.ClientId = configuration["XAuthAuthServer:ClientId"];
     options.ClientSecret = configuration["XAuthAuthServer:ClientSecret"];

     options.UsePkce = true;
     options.SaveTokens = true;
     options.GetClaimsFromUserInfoEndpoint = true;

     options.Scope.Add("roles");
     options.Scope.Add("email");
     options.Scope.Add("phone");
     options.Scope.Add("XCore");

     //options.SignInScheme = IdentityConstants.ExternalScheme;
 });

hi

The EntityName Property

The EntityName property is to set the related entity's name on the repository object in some advanced scenarios. For example, you can use this property to use the Shared-type entity types feature of Entity Framework Core (it allows you to use a single entity class to work on multiple tables in the database). In other cases, you can just ignore it.

Default value is null unless you explicitly set it.

Example usage:

IRepository&lt;YourSharedType, Guid&gt; _repository; // You can inject it into your class
...
_repository.SetEntityName("Product"); //Set the entity name before using the repository
//use the _repository object as always

The ProviderName Property

The ProviderName property of a repository object returns the underlying database provider name. It may return one of the following string values for the built-in providers:

  • Volo.Abp.EntityFrameworkCore (from the constant AbpEfCoreConsts.ProviderName value)
  • Volo.Abp.MongoDB (from the constant AbpMongoDbConsts.ProviderName value)
  • Volo.Abp.MemoryDb (from the constant AbpMemoryDbConsts.ProviderName value)

This property is not used in most cases. It is mainly available for internal usage of the ABP framework.

https://github.com/abpframework/abp/pull/23638 https://github.com/abpframework/abp/commit/968bfe0fa037f7cf87c75f8f103043d2cb1f9e30

Thanks.

Answer

hi

This is very strange. Could you share a project that reproduces the exception?

Thanks.

Showing 761 to 770 of 12016 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❀️ on ABP v10.3.0-preview. Updated on February 25, 2026, 11:36
1
ABP Assistant
πŸ” You need to be logged in to use the chatbot. Please log in first.