Activities of "maliming"

hi

Can you share your project structure screenshoot?

hi

hi

https://support.abp.io/QA/Questions/2787/Lookup-user--Create-user-from-microservice

hi

Add the below code to your blazor server:

.AddCookie("Cookies", options =>
{
    options.ExpireTimeSpan = TimeSpan.FromMinutes(3);
    options.SlidingExpiration = true;
    options.Events.OnSigningIn = cookie =>
    {
        cookie.Properties.IsPersistent = true;
        return Task.CompletedTask;
    };
})

Add the below code to your auth server:

context.Services.ConfigureApplicationCookie(options =>
{
    options.ExpireTimeSpan = TimeSpan.FromMinutes(3);
    options.SlidingExpiration = true;
    options.Events.OnSigningIn = cookie =>
    {
        cookie.Properties.IsPersistent = true;
        return Task.CompletedTask;
    };
});

hi

I'm testing it now.

hi

Thanks. I will run the app to test.

hi

I will set ExpireTimeSpan and test my locally. Thanks.

hi

When I try to upload with web host request, I got some error. Then, I added web host to cors-origin to authserver appsettings file. But I got a an other error from upload request. It returned successful array but id is broken. How can I request from web host?

What's the error?

but id is broken.

Can you explain it in detail?

hi

It is not recommended that you create a relationship, because different microservices may use different database(SQL server, mysql). You can record the user id and query the user info when needed

Showing 5541 to 5550 of 10662 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 15, 2025, 14:41