Hi,
I'm trying to make the ConcertDB scraper work again now that its TMDB API key has expired. This is also the first time I'm dealing with the add-on backend so I'm feeling a bit out of my element.
I got a new key, however, when I plug it into this piece of code in the scraper:
the logs show that it's only looking for info locally and doesn't even attempt to look remotely online.
Previously, when the API key was invalid I was getting an "Unable to connect to remote server" error, but now, there's no error in Kodi, just a logging statement saying "WARNING: No information found for item" in the local directory.
I know that this key works because when I enter the URL into my browser, I'm getting a valid JSON back.
Any idea what's happening here?
Thanks!
I'm trying to make the ConcertDB scraper work again now that its TMDB API key has expired. This is also the first time I'm dealing with the add-on backend so I'm feeling a bit out of my element.
I got a new key, however, when I plug it into this piece of code in the scraper:
Code:
<CreateSearchUrl dest="3">
<RegExp input="$$1" output="<url>http://api.tmdb.org/3/search/movie?api_key=[api_key]&amp;query=\1&amp;year=$$4&amp;language=$INFO[language]</url>" dest="3">
<RegExp input="$$2" output="\1" dest="4">
<expression clear="yes">(.+)</expression>
</RegExp>
<expression noclean="1" />
</RegExp>
</CreateSearchUrl>
the logs show that it's only looking for info locally and doesn't even attempt to look remotely online.
Previously, when the API key was invalid I was getting an "Unable to connect to remote server" error, but now, there's no error in Kodi, just a logging statement saying "WARNING: No information found for item" in the local directory.
I know that this key works because when I enter the URL into my browser, I'm getting a valid JSON back.
Any idea what's happening here?
Thanks!