-
Couldn't load subscription status.
- Fork 44
Description
Motivation
The SDK suppresses HTTP errors from the KAI back-end servers that could be useful for the SDK user to know about and act on.
For example, when you specify bad arguments in the query parameter list of the delivery client and the client is executed - nothing is returned and you receive a very unhelpful LINQ-exception of the "source is null" kind. However, when you enable the source-debugging link on Visual Studio and laboriously trace the call down to the DeliveryClient.cs level, then you can see the pertinent details of why the HTTP call failed.
Proposed solution
If the response from the backend service is a validation error, return that error all the way up to the point of contact (eg. var list = await deliveryClient.GetItemsAsync(parameters); ).
More fundamentally, don't send back a null object - the client always breaks because the attached LINQ code expects a source. At least throw a better exception.
Additional context
This image show where inside the Kontent.Ai.Delivery.DeliveryClient.cs the pertinent error and details are available.
