LukeHagar.PlexAPI.SDK
0.11.1
dotnet add package LukeHagar.PlexAPI.SDK --version 0.11.1
NuGet\Install-Package LukeHagar.PlexAPI.SDK -Version 0.11.1
<PackageReference Include="LukeHagar.PlexAPI.SDK" Version="0.11.1" />
paket add LukeHagar.PlexAPI.SDK --version 0.11.1
#r "nuget: LukeHagar.PlexAPI.SDK, 0.11.1"
// Install LukeHagar.PlexAPI.SDK as a Cake Addin #addin nuget:?package=LukeHagar.PlexAPI.SDK&version=0.11.1 // Install LukeHagar.PlexAPI.SDK as a Cake Tool #tool nuget:?package=LukeHagar.PlexAPI.SDK&version=0.11.1
LukeHagar.PlexAPI.SDK
SDK Example Usage
Example
using LukeHagar.PlexAPI.SDK;
using LukeHagar.PlexAPI.SDK.Models.Components;
var sdk = new PlexAPI(
accessToken: "<YOUR_API_KEY_HERE>",
clientID: "3381b62b-9ab7-4e37-827b-203e9809eb58",
clientName: "Plex for Roku",
clientVersion: "2.4.1",
platform: "Roku",
deviceNickname: "Roku 3"
);
var res = await sdk.Server.GetServerCapabilitiesAsync();
// handle response
Error Handling
Handling errors in this SDK should largely match your expectations. All operations return a response object or throw an exception.
By default, an API error will raise a LukeHagar.PlexAPI.SDK.Models.Errors.SDKException
exception, which has the following properties:
Property | Type | Description |
---|---|---|
Message |
string | The error message |
StatusCode |
int | The HTTP status code |
RawResponse |
HttpResponseMessage | The raw HTTP response |
Body |
string | The response content |
When custom error responses are specified for an operation, the SDK may also throw their associated exceptions. You can refer to respective Errors tables in SDK docs for more details on possible exception types for each operation. For example, the GetServerCapabilitiesAsync
method throws the following exceptions:
Error Type | Status Code | Content Type |
---|---|---|
LukeHagar.PlexAPI.SDK.Models.Errors.GetServerCapabilitiesBadRequest | 400 | application/json |
LukeHagar.PlexAPI.SDK.Models.Errors.GetServerCapabilitiesUnauthorized | 401 | application/json |
LukeHagar.PlexAPI.SDK.Models.Errors.SDKException | 4XX, 5XX | */* |
Example
using LukeHagar.PlexAPI.SDK;
using LukeHagar.PlexAPI.SDK.Models.Components;
using System;
using LukeHagar.PlexAPI.SDK.Models.Errors;
var sdk = new PlexAPI(
accessToken: "<YOUR_API_KEY_HERE>",
clientID: "3381b62b-9ab7-4e37-827b-203e9809eb58",
clientName: "Plex for Roku",
clientVersion: "2.4.1",
platform: "Roku",
deviceNickname: "Roku 3"
);
try
{
var res = await sdk.Server.GetServerCapabilitiesAsync();
// handle response
}
catch (Exception ex)
{
if (ex is GetServerCapabilitiesBadRequest)
{
// Handle exception data
throw;
}
else if (ex is GetServerCapabilitiesUnauthorized)
{
// Handle exception data
throw;
}
else if (ex is LukeHagar.PlexAPI.SDK.Models.Errors.SDKException)
{
// Handle default exception
throw;
}
}
Server Selection
Server Variables
The default server https://10.10.10.47:32400
contains variables and is set to https://10.10.10.47:32400
by default. To override default values, the following parameters are available when initializing the SDK client instance:
protocol: ServerProtocol
ip: string
port: string
Override Server URL Per-Client
The default server can also be overridden globally by passing a URL to the serverUrl: string
optional parameter when initializing the SDK client instance. For example:
using LukeHagar.PlexAPI.SDK;
using LukeHagar.PlexAPI.SDK.Models.Components;
var sdk = new PlexAPI(
serverUrl: "https://10.10.10.47:32400",
accessToken: "<YOUR_API_KEY_HERE>",
clientID: "3381b62b-9ab7-4e37-827b-203e9809eb58",
clientName: "Plex for Roku",
clientVersion: "2.4.1",
platform: "Roku",
deviceNickname: "Roku 3"
);
var res = await sdk.Server.GetServerCapabilitiesAsync();
// handle response
Override Server URL Per-Operation
The server URL can also be overridden on a per-operation basis, provided a server list was specified for the operation. For example:
using LukeHagar.PlexAPI.SDK;
using LukeHagar.PlexAPI.SDK.Models.Components;
var sdk = new PlexAPI(
accessToken: "<YOUR_API_KEY_HERE>",
clientID: "3381b62b-9ab7-4e37-827b-203e9809eb58",
clientName: "Plex for Roku",
clientVersion: "2.4.1",
platform: "Roku",
deviceNickname: "Roku 3"
);
var res = await sdk.Plex.GetCompanionsDataAsync(serverUrl: "https://plex.tv/api/v2");
// handle response
Authentication
Per-Client Security Schemes
This SDK supports the following security scheme globally:
Name | Type | Scheme |
---|---|---|
AccessToken |
apiKey | API key |
To authenticate with the API the AccessToken
parameter must be set when initializing the SDK client instance. For example:
using LukeHagar.PlexAPI.SDK;
using LukeHagar.PlexAPI.SDK.Models.Components;
var sdk = new PlexAPI(
accessToken: "<YOUR_API_KEY_HERE>",
clientID: "3381b62b-9ab7-4e37-827b-203e9809eb58",
clientName: "Plex for Roku",
clientVersion: "2.4.1",
platform: "Roku",
deviceNickname: "Roku 3"
);
var res = await sdk.Server.GetServerCapabilitiesAsync();
// handle response
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- newtonsoft.json (>= 13.0.3)
- nodatime (>= 3.1.9)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.11.1 | 76 | 11/14/2024 |
0.11.0 | 95 | 11/12/2024 |
0.10.0 | 469 | 10/3/2024 |
0.9.2 | 96 | 10/2/2024 |
0.9.1 | 94 | 10/2/2024 |
0.9.0 | 89 | 10/2/2024 |
0.8.7 | 91 | 9/30/2024 |
0.8.6 | 81 | 9/30/2024 |
0.8.5 | 100 | 9/30/2024 |
0.8.1 | 119 | 9/26/2024 |
0.8.0 | 95 | 9/25/2024 |
0.7.1 | 103 | 9/21/2024 |
0.7.0 | 98 | 9/21/2024 |
0.6.11 | 96 | 9/19/2024 |
0.6.10 | 106 | 9/16/2024 |
0.5.3 | 127 | 9/8/2024 |
0.4.2 | 118 | 8/31/2024 |
0.3.0 | 98 | 8/31/2024 |