html/jsx escaping

This commit is contained in:
Luke Hagar
2023-03-28 08:23:15 -05:00
parent 5bad236622
commit 36780ad0a0
22 changed files with 157 additions and 142 deletions

View File

@@ -9,9 +9,9 @@ This endpoint provides the caller with a temporary token with the same access le
+ scope: `all` - This is the only supported `scope` parameter.
+ Response 200 (application/xml)
```xml
<MediaContainer size="0" token="transient-90904684-f91a-4391-8bf7-e0dfa7240285"></MediaContainer>
```
### Get Source Connection Information [GET /security/resources{?source}]
If a caller requires connection details and a transient token for a source that is known to the server, for example a cloud media provider or shared PMS, then this endpoint can be called. This endpoint is only accessible with either an admin token or a valid transient token generated from an admin token.
@@ -22,7 +22,7 @@ Note: requires Plex Media Server >= 1.15.4.
+ source: `server://client-identifier` or `provider://provider-identifier` - The source identifier with an included prefix.
+ Response 200 (application/xml)
```xml
<MediaContainer size="1">
<Device name="PlexCorp (plex-corp)" clientIdentifier="243b471948ace337a8f92f129ec97d1902fcb1df" accessToken="transient-fa75f159-b9d2-42b6-8fbd-1761c7a4195a">
<Connection protocol="https" address="10.0.2.123" uri="https://10-0-2-123.93b10b279ff8456686414add109854cd.plex.direct:32400" port="32400" local="1" />
@@ -30,3 +30,4 @@ Note: requires Plex Media Server >= 1.15.4.
<Connection protocol="https" address="139.162.158.105" uri="https://139-162-158-105.93b10b279ff8456686414add109854cd.plex.direct:8443" port="8443" local="0" relay="1" />
</Device>
</MediaContainer>
```