When attempting to retrieve an EpisodeFullResponse using a String UID value acquired via an EpisodeBaseResponse, I receive an ApiException, but I have no idea why.
I iterate over the EpisodeBase objects returned from the search, and when one matches my desired condition, I assign its UID to a String variable. (I've confirmed that the value is being properly populated to the variable, and that it is correctly typed to String.) Then that String variable is used as the parameter on the get() method of an Episode object.
I have been unable to get anything but an ApiException from this step of my process. It doesn't matter if I follow the example in the Java Client documentation (using hardcoded UID text) or supply a String variable containing the confirmed UID value; the result is the same.
Is there a way to get more detailed error messages from the ApiException to help with debugging?
(My apologies if I'm missing something obvious; I'm new to working with APIs, and there doesn't seem to be much documentation or tutorial material out there for this API. Please let me know if I'm asking in the wrong place or to the wrong people.)
When attempting to retrieve an EpisodeFullResponse using a String UID value acquired via an EpisodeBaseResponse, I receive an ApiException, but I have no idea why.
I iterate over the EpisodeBase objects returned from the search, and when one matches my desired condition, I assign its UID to a String variable. (I've confirmed that the value is being properly populated to the variable, and that it is correctly typed to String.) Then that String variable is used as the parameter on the get() method of an Episode object.
I have been unable to get anything but an ApiException from this step of my process. It doesn't matter if I follow the example in the Java Client documentation (using hardcoded UID text) or supply a String variable containing the confirmed UID value; the result is the same.
Is there a way to get more detailed error messages from the ApiException to help with debugging?
(My apologies if I'm missing something obvious; I'm new to working with APIs, and there doesn't seem to be much documentation or tutorial material out there for this API. Please let me know if I'm asking in the wrong place or to the wrong people.)