Activities of "liangshiwei"

Hi,

Are you using Blazor WASM or Blazor Server?

Hi,

Yes, you need to use the Authentication Code Flow.

Configure the Oidc Authentication in the Blazor application:

It will redirect to the auth server to login.

Hi,

https://github.com/maliming/Owl.Abp.CultureMap You can try this to map "de" and "de-at" to "de-de".

I can't reproduce this problem

Can you try switching to other ios simulators?

Hi,

Can you share a project that can reproduce the problem with me? shiwei.liang@volosoft.com I will check it.

ok, I will check it

Can you please tell if the API function sent above (UpdateProfilePictureAsync) is the right way to call this API

You can see the upload was successful when viewing account profile

I am not sure why the API call failed from POSTMAN too on our side? Something to do with filesize? Or anything you can let us know.

I guess it's not related to file size

var httpClient = new HttpClient();

httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", token);
httpClient.BaseAddress = new Uri("https://localhost:44305");

string endpoint = "/api/account/profile-picture";

var formData = new MultipartFormDataContent
{
    { new StringContent("2"), "Type" }
};

var streamContent = new StreamContent(File.OpenRead("C:\\Users\\Deawb\\Desktop\\photo.png"));
streamContent.Headers.ContentType = new MediaTypeHeaderValue("image/png");


formData.Add(streamContent,"ImageContent", "photo.png");

var response = await httpClient.PostAsync(endpoint, formData);

Is there a way to reset the distributed cache for those entities, or remove them from the cache?

You need to manually remove the bold change using the code:

IDistributedCache<....> cache;

cache.RemoveAsync();
cache.RemoveManyAsync()

Also, I noticed that this method gets called pretty frequently, is that expected?

Yes.

Hi,

Ok, we will, your ticket refunded.

Hi,

Are you using Blazor or Blazor server?

Showing 3841 to 3850 of 6693 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.1.0-preview. Updated on November 04, 2025, 06:41