Skip to content

Commit ed26108

Browse files
authored
Merge pull request #97409 from aahill/freshness
Freshness
2 parents 9a66ca2 + 83dd9aa commit ed26108

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

articles/cognitive-services/bing-local-business-search/overview.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: bing-local-business
1010
ms.topic: overview
11-
ms.date: 09/13/2019
11+
ms.date: 11/29/2019
1212
ms.author: aahi
1313
---
1414

@@ -31,9 +31,9 @@ Call the Bing Local Business Search API from any programming language that can m
3131
4. Parse the JSON response
3232

3333
> [!NOTE]
34-
> Currently, Local Business Search supports only the `en-US` market.
35-
> [!NOTE]
36-
> Currently, Local Business Search does not support Autosuggest.
34+
> Currently, Local Business Search:
35+
> * Only supports only the `en-US` market.
36+
> * Does not support Bing Autosuggest.
3737
3838
## Next steps
3939
- [Query and response](local-search-query-response.md)

articles/cognitive-services/bing-local-business-search/quickstarts/local-quickstart.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: bing-local-business
1010
ms.topic: quickstart
11-
ms.date: 04/26/2019
12-
ms.author: rosh
11+
ms.date: 11/29/2019
12+
ms.author: aahi
1313
---
1414

1515
# Quickstart: Send a query to the Bing Local Business Search API in C#
@@ -29,7 +29,7 @@ You must have a [Cognitive Services API account](https://docs.microsoft.com/azur
2929

3030
The following code creates a `WebRequest`, sets the access key header, and adds a query string for "restaurant in Bellevue". It then sends the request and assigns the response to a string to contain the JSON text.
3131

32-
```
32+
```csharp
3333
// Replace the accessKey string value with your valid access key.
3434
const string accessKey = "enter key here";
3535

@@ -55,7 +55,7 @@ The Bing Local Business Search API returns localized search results from the Bin
5555
3. Replace the accessKey value with an access key valid for your subscription.
5656
4. Run the program.
5757

58-
```
58+
```csharp
5959
using System;
6060
using System.Collections.Generic;
6161
using System.Text;

articles/cognitive-services/bing-local-business-search/quickstarts/local-search-java-quickstart.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: bing-local-business
1010
ms.topic: quickstart
11-
ms.date: 09/13/2019
11+
ms.date: 11/29/2019
1212
ms.author: aahi
1313
---
1414

@@ -30,7 +30,7 @@ This example application gets local response data from the query for a *hotel in
3030

3131
The following code creates a `WebRequest`, sets the access key header, and adds a query string for "hotel in Bellevue". It then sends the request and assigns the response to a string to contain the JSON text.
3232

33-
```
33+
```java
3434
// construct URL of search request (endpoint + query string)
3535
URL url = new URL(host + path + "?q=" + URLEncoder.encode(searchQuery, "UTF-8") + &mkt=en-us");
3636
HttpsURLConnection connection = (HttpsURLConnection)url.openConnection();
@@ -53,7 +53,7 @@ The Bing Local Business Search API returns results from the Bing search engine.
5353
4. Replace the subscriptionKey value with an access key valid for your subscription.
5454
5. Run the program.
5555
56-
```
56+
```java
5757
package localSearch;
5858
import java.net.*;
5959
import java.util.*;

articles/cognitive-services/bing-local-business-search/quickstarts/local-search-node-quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: bing-local-business
1010
ms.topic: quickstart
11-
ms.date: 09/13/2019
11+
ms.date: 11/29/2019
1212
ms.author: aahi
1313
---
1414

@@ -38,7 +38,7 @@ The following code gets defines and sends the request. It is implemented in the
3838

3939
The complete code for this demo follows:
4040

41-
```
41+
```javascript
4242
'use strict';
4343

4444
let https = require('https');

articles/cognitive-services/bing-local-business-search/quickstarts/local-search-python-quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: bing-local-business
1010
ms.topic: quickstart
11-
ms.date: 11/06/2019
11+
ms.date: 11/29/2019
1212
ms.author: aahi
1313
---
1414
# Quickstart: Send a query to the Bing Local Business Search API in Python
@@ -35,7 +35,7 @@ The following code gets localized results. It is implemented in the following st
3535

3636
The complete code for this demo follows:
3737

38-
```
38+
```python
3939
import http.client, urllib.parse
4040
import json
4141

0 commit comments

Comments
 (0)