Ombi-app / Ombi

Want a Movie or TV Show on Plex/Emby/Jellyfin? Use Ombi!
http://ombi.io
GNU General Public License v2.0
3.64k stars 391 forks source link

TMDB API token is broken #5077

Closed ahaverty closed 4 months ago

ahaverty commented 4 months ago

Summary

TMDB requests are failing This token is reporting as invalid. https://github.com/Ombi-app/Ombi/blob/develop/src/Ombi.TheMovieDbApi/TheMovieDbApi.cs#L31

Ombi Version

4.43.11

What platform(s) does this occur on?

Windows

What database are you using?

SQLite (Default)

Relevant log output

No response

ahaverty commented 4 months ago
curl --request GET \
     --url https://api.themoviedb.org/3/authentication \
     --header 'Authorization: Bearer b8eabaf5608b88d0298aa189dd90bf00' \
     --header 'accept: application/json'

Response 401:

{
  "status_code": 7,
  "status_message": "Invalid API key: You must be granted a valid key.",
  "success": false
}

I have created my own TMDB API key here, but couldn't figure out where to swap it as a workaround, all the .pdb seem to be obfuscated. This has taken down the majority of ombi functionality for me, surely I'm not alone?

tidusjar commented 4 months ago

The token ombi uses is working fine

ahaverty commented 3 months ago

Thanks @tidusjar sorry if I wasted your time there. I went down a rabbit hole trying to understand why I couldn't even view a show, and thought I'd proven an issue with the ombi api token. I must've curl'd the above wrong. It seems logging out and back in (https://github.com/Ombi-app/Ombi/issues/5045#issuecomment-1977531522) has fixed everything up for me since. Thanks for your time!