well the site I use needs login/password for all functions, including searching for imdb no's - not only GetDetails. GetSearchResult works fine with params.
Perhaps I do not understand NfoUrl correctly. I look at CreateSearchUrl as a way to get a search for title where NfoUrl gives me a way to search for imdb no if I have one in a nfo file for example.
I don't understand why all scrapers would be probed if I have selected mine I don't really want it to use any other - but I can see that it does never the less.
I have modeled my scraper pretty much from tmdb as the site works in a very similar way - just with the added params for login/password for all functions.
tmdb NfoUrl:
<url function="GetTMDBId">http://api.themoviedb.org/2.0/Movie.imdbLookup?imdb_id=tt\2&api_key=57983e31fb435df4df77afb854740ea9</url>
I wonder that the function="GetTMDBId" does? It outputs:
<url>http://api.themoviedb.org/2.0/Movie.getInfo?id=\1&api_key=57983e31fb435df4df77afb854740ea9</url><id>\1</id>
Now my NfoUrl does this:
<url>https://api.mymovies.dk/Default.aspx?command=SearchIMDBId&imdbid=tt\2&username=$INFO[username]&password=$INFO[password]&country=$INFO[country]&includeenglish=$INFO[includeenglish]&includeadult=$INFO[includeadult]</url>
Perhaps I need to add the params to a GetTMDBId in a similar way? Might be my error
Sorry for hijacking your thread. Just thought it might be a problem for you too and your code, but of course not if I'm sidetracked in my implementation