Few problems:
- The URL starts with "/emby", this is invalid (unless you've manually configured this to be your base-url in Jellyfin or do reverse proxy magic)
- The api_key query parameter is deprecated - it still works but don't use it
- The X-Emby-Token header is deprecated - it still works but don't use it
- You added authorization twice (query/header)
- There is no GET operation for this specific route, the GetItem operation requires a user-id in 10.8, add it as a query parameter
A more correct request would look like this:
Additional references:
- https://gist.github.com/nielsvanvelzen/e...1ffaf12a6f
- https://api.jellyfin.org/#tag/Items/operation/GetItem
- The URL starts with "/emby", this is invalid (unless you've manually configured this to be your base-url in Jellyfin or do reverse proxy magic)
- The api_key query parameter is deprecated - it still works but don't use it
- The X-Emby-Token header is deprecated - it still works but don't use it
- You added authorization twice (query/header)
- There is no GET operation for this specific route, the GetItem operation requires a user-id in 10.8, add it as a query parameter
A more correct request would look like this:
curl -v -X GET 'localhost:8096/Users/{userId}/Items/6062205f8327b080b03b2b510d267cb7' -H 'Authorization: MediaBrowser Token="my-key"'
Additional references:
- https://gist.github.com/nielsvanvelzen/e...1ffaf12a6f
- https://api.jellyfin.org/#tag/Items/operation/GetItem