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
Nemůžete nalézt film nebo seriál? Přihlaste se pro jeho vytvoření.
Want to rate or add this item to a list?
Not a member?
Odpověď od Travis Bell
09.05.2013 v 6:53 ODP.
Hi Dec-on,
If I search for "spiderman":
I'm getting the results I would expect. What query are you doing?
Odpověď od Dec-
09.05.2013 v 7:05 ODP.
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...
Odpověď od Travis Bell
09.05.2013 v 7:16 ODP.
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.
Odpověď od Dec-
09.05.2013 v 7:20 ODP.
Yea my bad. Bye