Closed alireza55 closed 1 year ago
I'm not sure I follow. Have you tried doing the same with HttpClient? That's usually a good first step in figuring out how to do something atypical with Flurl, because it opens up any questions to a huge audience on Stack Overflow, and once you have the answer it should be simple to adapt to Flurl.
I generally prefer to keep programming questions out of Flurl issues, but if you can reply with a working sample demonstrating the solution with HttpClient, I can help you adapt it to Flurl.
Hello, At first thanks for wonderful Flurl! I have problem whit reverse proxy (Yarp) for fetching json data from api server, how to i can config flurl with reverse proxy .
for example this code return null from api gate way :
var data = ApiCall.GetIdentityEndpoint("/get-all-users").GetAsync().ReceiveJson<IList<UserResponse>>();
it's return a null data . In case of direct call api service (Not reverse proxy gate way) it's correct and return list data. Client app is blazor wasm. Regards,