I noticed that de Flickr API searches with "all of these words" by default.
How can I perform a text search with the "any of these words" option throught the Flickr API?
Used code:
Flickr flickr = new Flickr("dev api key");
PhotoSearchOptions searchOptions = new PhotoSearchOptions();
searchOptions.SafeSearch = SafetyLevel.Safe;
searchOptions.Text = "list of space seperated words";
searchOptions.SortOrder = PhotoSearchSortOrder.Relevance;
Photos page1ofresults = flickr.PhotosSearch(searchOptions);