Hi,
SearchContainer results = client.SearchMovie("Spiderman"); return null; Few days back it returned list. If i search for "Batman" it return normal list. Imo bug with last update.
Bb
Kan du inte hitta en film eller tv-serie? Logga in för att skapa den.
Vill du betygsätta denna artikel eller lägga till den i en lista?
Inte medlem?
Svar från Travis Bell
den 9 maj 2013 vid 6:53 PM
Hi Dec-on,
If I search for "spiderman":
I'm getting the results I would expect. What query are you doing?
Svar från Dec-
den 9 maj 2013 vid 7:05 PM
SearchContainer results = client.SearchMovie("Spiderman"); foreach (SearchMovie result in results.Results) { Console.WriteLine(result.Title); Console.WriteLine(result.Id); Console.WriteLine(result.PosterPath);
And it returns null;
and if i go with 007
SearchContainer results = client.SearchMovie("007"); foreach (SearchMovie result in results.Results) { Console.WriteLine(result.Title); Console.WriteLine(result.Id); Console.WriteLine(result.PosterPath); } return list...
Svar från Travis Bell
den 9 maj 2013 vid 7:16 PM
There are some movies without a poster, which is a null field. id 68658, for example. You will have to catch those, this doesn't have anything to do with searching.
Svar från Dec-
den 9 maj 2013 vid 7:20 PM
Yea my bad. Bye