I want to search for Freelancer projects via their API with multiple query words. I want the projects to match any one of the words in the query and not all of them. Reading through Freelancer's API and this GitHub issue, I expected sending an HTTP GET request to this URL to work (where either one of the two query words, "web" and "mobile", should be matched):
/projects/0.1/projects/all?query=web mobile&or_search_query=True
However, the response I get only includes the projects that match both of these words, as if the or_search_query
parameter is not even there. I have also tried switching "True" to lowercase "true", but the same issue remains.