I am trying to get the result in specified language in the query but i have no idea on how to mention it even i found the information i don't know the syntax can anyone help me?
I tried this to get the results in French language using php for example
$request = 'https://api.datamarket.azure.com/Bing/Search/Web';
$full_request = urlencode( '\'' . $_POST["searchText"] . '\'').'%27language:fr%27&$top=10';
Here fr
mean for french language but i couldn't get the result as expected. Can any one help on this?