![]() |
v19 themoviedb.org lookups have been failing since October 26 2021 - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27) +---- Forum: Information Providers (scrapers) (https://forum.kodi.tv/forumdisplay.php?fid=147) +----- Forum: Movie Scrapers (https://forum.kodi.tv/forumdisplay.php?fid=302) +----- Thread: v19 themoviedb.org lookups have been failing since October 26 2021 (/showthread.php?tid=365153) Pages:
1
2
|
themoviedb.org lookups have been failing since October 26 2021 - DugieHowsa - 2021-10-27 Greetings. Yesterday, I started to notice the following Pop-Up when performing a Movie Library update. ![]() Checking the logs, I started to find instances of the following. 2021-10-26 08:00:03.535 T:48643 INFO : VideoInfoScanner: Starting scan .. 2021-10-26 08:00:36.430 T:48643 ERROR : CCurlFile::FillBuffer - Failed: Timeout was reached(28) 2021-10-26 08:00:36.430 T:48643 ERROR : CCurlFile::Open failed with code 0 for https://api.themoviedb.org/3/search/movie?api_key=f090bb54758cabf231fb605d3e3e0468&query=Cruella&year=&language=en: 2021-10-26 08:00:36.430 T:48643 ERROR : Run: Unable to parse web site I can confirm that the URL is resolving. ping api.themoviedb.org PING api.themoviedb.org (65.8.20.4): 56 data bytes 64 bytes from 65.8.20.4: seq=0 ttl=247 time=11.759 ms 64 bytes from 65.8.20.4: seq=1 ttl=247 time=6.137 ms 64 bytes from 65.8.20.4: seq=2 ttl=247 time=10.263 ms ^C --- api.themoviedb.org ping statistics --- 3 packets transmitted, 3 packets received, 0% packet loss round-trip min/avg/max = 6.137/9.386/11.759 ms I can also receive a valid response when accessing the URL from a different host.
I noticed that the other host that does get a valid response resolves the URL to a different IP. Is it possible that just one of themoviedb.org servers is having issues and is causing this error? All other Meta-Data providers are operating normally, and no other issues with KODI are being experienced at this time. Full Kodi.log Part 1 Part 2 Part 3 Part 4 Part 5 RE: themoviedb.org lookups have been failing since October 26 2021 - DugieHowsa - 2021-10-27 I flushed the DNS cache in order to try to connect to a different themoviedb.org server. The URL now resolves to a different IP address, but I am still getting the same message. RE: themoviedb.org lookups have been failing since October 26 2021 - Karellen - 2021-10-27 You did not enable debug mode so there is nothing to see in the log. Try again... Debug Log RE: themoviedb.org lookups have been failing since October 26 2021 - DugieHowsa - 2021-10-27 It looks like the server is responding to the request with a 422 status code. wget https://api.themoviedb.org/3/search/movie?api_key=f090bb54758cabf231fb605d3e3e0468&query=Cruella&year=&language=en Connecting to api.themoviedb.org (65.8.20.119:443) wget: server returned error: HTTP/1.1 422 Unknown RE: themoviedb.org lookups have been failing since October 26 2021 - DugieHowsa - 2021-10-27 (2021-10-27, 19:31)Karellen Wrote: You did not enable debug mode so there is nothing to see in the log. Try again... Debug Log Here is the requested Debug Log. https://paste.kodi.tv/luzikuluya.kodi RE: themoviedb.org lookups have been failing since October 26 2021 - Karellen - 2021-10-27 (2021-10-27, 19:31)DugieHowsa Wrote: wget https://api.themoviedb.org/3/search/movi...anguage=enOpen your web browser and click on that link. What do you see? I click on it and I see the expected API return. RE: themoviedb.org lookups have been failing since October 26 2021 - DugieHowsa - 2021-10-27 (2021-10-27, 20:28)Karellen Wrote:I receive the expected results as well when accessing the URL from a host other than the one that is running KODI. Not sure why only the KODI host is having a problem. The KODI application is experiencing the issue, as well as when I attempt to use WGET or CURL from the command line of the KODI system.(2021-10-27, 19:31)DugieHowsa Wrote: wget https://api.themoviedb.org/3/search/movi...anguage=enOpen your web browser and click on that link. What do you see? Packet capture shows the servers returning the following message: ![]() Let me know if you want access to the full PCAP. RE: themoviedb.org lookups have been failing since October 26 2021 - wsnipex - 2021-10-27 they might be doing user agent filtering. RE: themoviedb.org lookups have been failing since October 26 2021 - DugieHowsa - 2021-10-27 (2021-10-27, 22:06)wsnipex Wrote: they might be doing user agent filtering. Is it possible to modify the moviedb addon to use http instead of https for the purpose of troubleshooting? I did not see any option for this in the ADDON -> Configure Settings. It would make it easier to troubleshoot if I could see the HTTP protocol in clear text. RE: themoviedb.org lookups have been failing since October 26 2021 - Karellen - 2021-10-27 (2021-10-27, 23:13)DugieHowsa Wrote: Is it possible to modify the moviedb addon to use http instead of https for the purpose of troubleshooting?I don't know which scraper you are using, but these might help... https://github.com/xbmc/repo-scrapers/pull/58 https://github.com/xbmc/repo-scrapers/pull/26 RE: themoviedb.org lookups have been failing since October 26 2021 - emveepee - 2021-10-28 (2021-10-27, 19:31)DugieHowsa Wrote: It looks like the server is responding to the request with a 422 status code.Is suspect the 422 is simply because you are trying this in Windows and forgetting to use the quotes on the URL, so the parameters are getting dropped. Martin RE: themoviedb.org lookups have been failing since October 26 2021 - DugieHowsa - 2021-10-28 (2021-10-28, 00:26)emveepee Wrote:I am not using Windows. I am using LibreELEC.(2021-10-27, 19:31)DugieHowsa Wrote: It looks like the server is responding to the request with a 422 status code.Is suspect the 422 is simply because you are trying this in Windows and forgetting to use the quotes on the URL, so the parameters are getting dropped. RE: themoviedb.org lookups have been failing since October 26 2021 - emveepee - 2021-10-28 (2021-10-28, 03:46)DugieHowsa Wrote: am not using Windows. I am using LibreELECI was referring to your wget test. I still believe the 422 was a fault of the URL you were using. Martin RE: themoviedb.org lookups have been failing since October 26 2021 - DugieHowsa - 2021-10-28 (2021-10-28, 05:20)emveepee Wrote:The wget test was run on LibreELEC. The PCAP was copied off of LibreELEC and viewed in Wireshark on Windows.(2021-10-28, 03:46)DugieHowsa Wrote: am not using Windows. I am using LibreELECI was referring to your wget test. I still believe the 422 was a fault of the URL you were using. RE: themoviedb.org lookups have been failing since October 26 2021 - DugieHowsa - 2021-10-28 Here are the available Movie Information addons installed on the system. ![]() The Movie Library was configured to use "The Movie Database". I switched it to use "The Movie Database Python". Although a match was found, a few ERRORS were still produced. Logs So, I guess we can chalk this up to partial workaround. |