ABP: FlurlHttpException covers the UserFriendlyException

198 Views Asked by At

I use ABP as a server and a mobile app in Xamarin Forms.

In my Xamarin Forms I call through Flurl my api.

My api throws a UserFriendlyException. It works well through swagger UI browser.

But in my xamarin app it throws always as error 500 server FlurlHttpException.

And I can't access to my UserFriendlyException and message.

My swagger result when I call my api:

enter image description here

My call in my Xamarin Forms

 var response = await webclient
                .Request(LoginUrl)
                .PostJsonAsync(loginModel)
                .ReceiveJson<loginResultModel>();

It throws the flurlhttpexception. I should have the UserFriendlyException. This is the exception I have.

enter image description here

1

There are 1 best solutions below

0
On

dynamic d = ex.GetResponseJson(); did the tricks.

thanks