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