You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 21, 2024. It is now read-only.
I am using this API to build a front-end app to access my Plex media as a programming exercise. I have no issues logging in and collecting the list of servers, but when I select a server to list its libraries, it gets a null response. Here is what I know:
In GetLibrarySections(), MediaContainer m comes up null
When the new MediaContainer object is instantiated with the Load() method, var m in Load() comes up null.
Following the definitions down, public T Execute(RestRequest request, RestClient client) where T : new() returns null because Response.data is null. However, Response.content has a JSON object with valid data.
I am still not great with some of the techniques used here so if you have any suggestions please let me know.