Making adjustments as per Issue #832

master
TChilderhose 5 years ago
parent c939c7e857
commit 6744169344

@ -11,9 +11,13 @@ You can get images from Lidarr using either API key authentication or the authen
Images are available in a few different sizes (based on the height), as long as Lidarr was able to resize them, which may not be available on all systems. If A particular size is unavailable the original file will be returned.
Append `/api` to the URL to use API key authentication (after the URL Base).
- `/MediaCover/{id}/poster.jpg` becomes `/api/MediaCover/{id}/poster.jpg`
- `/lidarr/MediaCover/{id}/poster.jpg` becomes `/lidarr/api/MediaCover/{id}/poster.jpg`
Append `/api/v1` to the URL to use API key authentication (after the URL Base) and add/adjust what type of id you are passing to the path after `MediaCover`.
- Artist
- `/MediaCover/{id}/poster.jpg` becomes `/api/v1/MediaCover/Artist/{id}/poster.jpg`
- `/lidarr/MediaCover/{id}/poster.jpg` becomes `/lidarr/api/v1/MediaCover/Artist/{id}/poster.jpg`
- Album (Note: Albums -> Album)
- `/MediaCover/Albums/{albumId}/cover.jpg` becomes `/api/v1/MediaCover/Album/{albumId}/cover.jpg`
- `/lidarr/MediaCover/Albums/{albumId}/cover.jpg` becomes `/lidarr/api/v1/MediaCover/Album/{albumId}/cover.jpg`
Replace the extension with `-{size}`.`{extension}`
- `/MediaCover/{id}/poster.jpg` becomes `/MediaCover/{id}/poster-250.jpg`

Loading…
Cancel
Save