Scraper only looking for local info when API key is changed
#1
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:
Code:
    <CreateSearchUrl dest="3">
        <RegExp input="$$1" output="&lt;url&gt;http://api.tmdb.org/3/search/movie?api_key=[api_key]&amp;amp;query=\1&amp;amp;year=$$4&amp;amp;language=$INFO[language]&lt;/url&gt;" 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!
Reply

Logout Mark Read Team Forum Stats Members Help
Scraper only looking for local info when API key is changed0