Skip to content

Commit 4675119

Browse files
committed
Verify or change all references Local Search -> Local Business Search.
1 parent 833f6e1 commit 4675119

11 files changed

+60
-60
lines changed

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Local Categories search | Microsoft Docs
3-
description: How to specify categories for Local search API endpoint.
2+
title: Local Business Categories search | Microsoft Docs
3+
description: How to specify categories for Local Business Search API endpoint.
44
services: cognitive-services
55
author: mikedodaro
66
manager: rosh
@@ -11,9 +11,9 @@ ms.date: 10/22/2018
1111
ms.author: rosh, v-gedod
1212
---
1313

14-
# Categories for Bing Local Search
14+
# Categories for Bing Local Business Search
1515
Search for local business entities by category. This feature works with the user’s implicit RevIP location and also with `localCircularView` and `localMapView` parameters.
16-
## Examples of Local Categories search
16+
## Examples of Local Business Categories search
1717
The following examples get results according to the `localCategories` parameter:
1818

1919
GET

articles/cognitive-services/bing-local-business-search/local-search-query-response.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Bing Local Business Search query and response | Microsoft Docs
3-
description: How to use the Bing Local Business Search API to search the web locally.
3+
description: How to use the Bing Local Business Search API to search the web.
44
services: cognitive-services
55
author: mikedodaro
66
manager: rosh
@@ -24,10 +24,10 @@ https://api.cognitive.microsoft.com/bing/localbusinesses/v7.0/search?q=restauran
2424
2525
````
2626
Complete request syntax and code scenarios are shown in the quickstarts:
27-
- [Local Search quickstart](quickstarts/local-quickstart.md)
28-
- [Local Search Java quickstart](quickstarts/local-search-java-quickstart.md)
29-
- [Local Search Node quickstart](quickstarts/local-search-node-quickstart.md)
30-
- [Local Search Python quickstart](quickstarts/local-search-python-quickstart.md)
27+
- [Local Business Search quickstart](quickstarts/local-quickstart.md)
28+
- [Local Business Search Java quickstart](quickstarts/local-search-java-quickstart.md)
29+
- [Local Business Search Node quickstart](quickstarts/local-search-node-quickstart.md)
30+
- [Local Business Search Python quickstart](quickstarts/local-search-python-quickstart.md)
3131

3232
The response contains a `SearchResponse` object. If Bing finds places that are relevant, the object includes the `places` field. If Bing does not find relevant entities, the response object will not include the `places` field.
3333

@@ -45,10 +45,10 @@ The response contains a `SearchResponse` object. If Bing finds places that are r
4545
````
4646

4747
## Local Business Search endpoint
48-
The **Local Search API** includes one endpoint that returns results from the Web based on a query.
48+
The **Local Business Search API** includes one endpoint that returns results from the Web based on a query.
4949

5050
## Endpoint
51-
To get local results, use the endpoint and include the `Ocp-Apim-Subscription-Key` header. There are several ways to specify the results. See [Headers](local-search-reference.md#headers) and [Parameters](local-search-reference.md#query-parameters) for the options. This example uses the `count` parameter to limit results to one, beginning with the first result as specified by `first=0`.
51+
To get localized results, use the endpoint and include the `Ocp-Apim-Subscription-Key` header. There are several ways to specify the results. See [Headers](local-search-reference.md#headers) and [Parameters](local-search-reference.md#query-parameters) for the options. This example uses the `count` parameter to limit results to one, beginning with the first result as specified by `first=0`.
5252

5353
GET:
5454
````
@@ -138,18 +138,18 @@ The JSON results include the following attributes:
138138
* telephone
139139
* url
140140

141-
For general information about headers, parameters, market codes, response objects, errors, etc., see the [Bing Local Search API v7](local-search-reference.md) reference.
141+
For general information about headers, parameters, market codes, response objects, errors, etc., see the [Bing Local Business Search API v7](local-search-reference.md) reference.
142142

143143
> [!NOTE]
144-
> You, or a third party on your behalf, may not use, retain, store, cache, share, or distribute any data from the Local Search API for the purpose of testing, developing, training, distributing or making available any non-Microsoft service or feature.
144+
> You, or a third party on your behalf, may not use, retain, store, cache, share, or distribute any data from the Local Business Search API for the purpose of testing, developing, training, distributing or making available any non-Microsoft service or feature.
145145
146146
## Throttling requests
147147

148148
[!INCLUDE [cognitive-services-bing-throttling-requests](../../../includes/cognitive-services-bing-throttling-requests.md)]
149149

150150

151151
## Next steps
152-
- [Local Search quickstart](quickstarts/local-quickstart.md)
153-
- [Local Search Java quickstart](quickstarts/local-search-java-quickstart.md)
154-
- [Local Search Node quickstart](quickstarts/local-search-node-quickstart.md)
155-
- [Local Search Python quickstart](quickstarts/local-search-python-quickstart.md)
152+
- [Local Business Search quickstart](quickstarts/local-quickstart.md)
153+
- [Local Business Search Java quickstart](quickstarts/local-search-java-quickstart.md)
154+
- [Local Business Search Node quickstart](quickstarts/local-search-node-quickstart.md)
155+
- [Local Business Search Python quickstart](quickstarts/local-search-python-quickstart.md)

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

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
---
3-
title: Bing Local Search API v7 Reference | Microsoft Docs
4-
description: Describes the programming elements of the Bing Local Search API.
3+
title: Bing Local Business Search API v7 Reference | Microsoft Docs
4+
description: Describes the programming elements of the Bing Local Business Search API.
55
services: cognitive-services
66
author: mikedodaro
77
manager: rosh
@@ -16,7 +16,7 @@ ms.author: rosh, v-gedod
1616

1717
The Local Business Search API sends a search query to Bing to get results that include include restaurants, hotels, or other local businesses. For places, the query can specify the name of the local business or a category (for example, restaurants near me). Entity results include persons, places, or things. Place in this context is business entities, states, countries, etc.
1818

19-
This section provides technical details about the response objects, and the query parameters and headers that affect the search results. For examples that show how to make requests, see [Local Search C# quickstart](quickstarts/local-quickstart.md) or [Local Search Java quickstart](quickstarts/local-search-java-quickstart.md).
19+
This section provides technical details about the response objects, and the query parameters and headers that affect the search results. For examples that show how to make requests, see [Local Business Search C# quickstart](quickstarts/local-quickstart.md) or [Local Business Search Java quickstart](quickstarts/local-search-java-quickstart.md).
2020

2121
For information about headers that requests should include, see [Headers](#headers).
2222

@@ -29,7 +29,7 @@ For information about permitted use and display of results, see [Use and display
2929

3030

3131
## Endpoint
32-
To request local search results, send a GET request to:
32+
To request local business results, send a GET request to:
3333

3434
```
3535
https://api.cognitive.microsoft.com/bing/localbusinesses/v7.0/search
@@ -68,8 +68,8 @@ The request may include the following query parameters. See the Required column
6868

6969
|Name|Value|Type|Required|
7070
|----------|-----------|----------|--------------|
71-
|<a name="localCategories" />localCategories|List of options that define search by business category. See [Local Categories search](local-categories.md)|String|No|
72-
|<a name="mkt" />mkt|The market where the results come from. <br /><br />For a list of possible market values, see [Market Codes](#market-codes).<br /><br /> **NOTE:** The Local Search API currently only supports en-us market and language.<br /><br />|String|Yes|
71+
|<a name="localCategories" />localCategories|List of options that define search by business category. See [Local Business Categories search](local-categories.md)|String|No|
72+
|<a name="mkt" />mkt|The market where the results come from. <br /><br />For a list of possible market values, see [Market Codes](#market-codes).<br /><br /> **NOTE:** The Local Business Search API currently only supports en-us market and language.<br /><br />|String|Yes|
7373
|<a name="query" />q|The user's search term.|String|No|
7474
|<a name="responseformat" />responseFormat|The media type to use for the response. The following are the possible case-insensitive values.<br /><ul><li>JSON</li><li>JSONLD</li></ul><br /> The default is JSON. For information about the JSON objects that the response contains, see [Response Objects](#response-objects).<br /><br /> If you specify JsonLd, the response body includes JSON-LD objects that contain the search results. For information about the JSON-LD, see [JSON-LD](http://json-ld.org/).|String|No|
7575
|<a name="safesearch" />safeSearch|A filter used to filter adult content. The following are the possible case-insensitive filter values.<br /><ul><li>Off&mdash;Return webpages with adult text, images, or videos.<br /><br/></li><li>Moderate&mdash;Return webpages with adult text, but not adult images or videos.<br /><br/></li><li>Strict&mdash;Do not return webpages with adult text, images, or videos.</li></ul><br /> The default is Moderate.<br /><br /> **NOTE:** If the request comes from a market that Bing's adult policy requires that `safeSearch` is set to Strict, Bing ignores the `safeSearch` value and uses Strict.<br/><br/>**NOTE:** If you use the `site:` query operator, there is the chance that the response may contain adult content regardless of what the `safeSearch` query parameter is set to. Use `site:` only if you are aware of the content on the site and your scenario supports the possibility of adult content. |String|No|
@@ -82,7 +82,7 @@ The following are the JSON response objects that the response may include. If th
8282

8383
|Object|Description|
8484
|------------|-----------------|
85-
|[Place](#place)|Defines information about a local entity such as a restaurant or hotel.|
85+
|[Place](#place)|Defines information about a local business such as a restaurant or hotel.|
8686

8787

8888
### Error
@@ -142,7 +142,7 @@ Note that a publisher may provide their name or their website or both.
142142

143143

144144
### Place
145-
Defines information about a local entity, such as a restaurant or hotel.
145+
Defines information about a local business, such as a restaurant or hotel.
146146

147147
|Name|Value|Type|
148148
|----------|-----------|----------|
@@ -260,7 +260,7 @@ The following are the possible error code and sub-error code values.
260260
|InsufficientAuthorization|AuthorizationDisabled<br/>AuthorizationExpired|Bing returns InsufficientAuthorization when the caller does not have permissions to access the resource. This can occur if the subscription key has been disabled or has expired. <br/><br/>If the error is InsufficientAuthorization, the HTTP status code is 403.
261261

262262
## Next steps
263-
- [Local Search quickstart](quickstarts/local-quickstart.md)
264-
- [Local Search Java quickstart](quickstarts/local-search-java-quickstart.md)
265-
- [Local Search Node quickstart](quickstarts/local-search-node-quickstart.md)
266-
- [Local Search Python quickstart](quickstarts/local-search-python-quickstart.md)
263+
- [Local Business Search quickstart](quickstarts/local-quickstart.md)
264+
- [Local Business Search Java quickstart](quickstarts/local-search-java-quickstart.md)
265+
- [Local Business Search Node quickstart](quickstarts/local-search-node-quickstart.md)
266+
- [Local Business Search Python quickstart](quickstarts/local-search-python-quickstart.md)

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ The Bing Local Business Search API is a RESTful service that enables your applic
1717
## Features
1818
| Feature | Description |
1919
| -- | -- |
20-
| [Find local businesses and locations](quickstarts/local-quickstart.md) | The Bing Local Business Search API gets localized information from a query. Results include a URL for the business's website, phone number, display text, and its geographical location, including: city, street address, and neighborhood |
20+
| [Find local businesses and locations](quickstarts/local-quickstart.md) | The Bing Local Business Search API gets localized results from a query. Results include a URL for the business's website, phone number, display text, and its geographical location, including: city, street address, and neighborhood |
2121
| [Filter local results with geographic boundaries](specify-geographic-search.md) | Add coordinates as search parameters to limit results to a specific geographic area, specified by either a circular area or square bounding box. |
22-
| [Filter local results by category](local-categories.md) | Search for local business entities by category. This option uses reverse IP location of the caller to return localized results of various categories of business.|
22+
| [Filter local business results by category](local-categories.md) | Search for local business results by category. This option uses reverse IP location of the caller to return localized results of various categories of business.|
2323

2424
## Workflow
2525
The Bing Local Business Search API is easy to call from any programming language that can make HTTP requests and parse JSON responses. The service is accessible using the REST API.
@@ -31,6 +31,6 @@ The Bing Local Business Search API is easy to call from any programming language
3131

3232
## Next steps
3333
- [Query and response](local-search-query-response.md)
34-
- [Local Search quickstart](quickstarts/local-quickstart.md)
34+
- [Local Business Search quickstart](quickstarts/local-quickstart.md)
3535
- [Local Business Search API reference](local-search-reference.md)
3636
- [Use and display requirements](use-display-requirements.md)

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The following code creates a `WebRequest`, sets the access key header, and adds
4444

4545
## Run complete application
4646

47-
The Bing Local Search API returns local search results from the Bing search engine.
47+
The Bing Local Business Search API returns localized search results from the Bing search engine.
4848
1. Create a new Console solution in Visual Studio (the Community Edition is fine).
4949
2. Replace Program.cs with the code provided below.
5050
3. Replace the accessKey value with an access key valid for your subscription.
@@ -98,7 +98,7 @@ namespace localSearch
9898
}
9999
100100
/// <summary>
101-
/// Performs a Bing Local search and return the results as a SearchResult.
101+
/// Performs a Bing Local business search and return the results as a SearchResult.
102102
/// </summary>
103103
static SearchResult BingLocalSearch(string searchQuery)
104104
{
@@ -200,6 +200,6 @@ namespace localSearch
200200
````
201201

202202
## Next steps
203-
- [Local Search Java quickstart](local-search-java-quickstart.md)
204-
- [Local Search Node quickstart](local-search-node-quickstart.md)
205-
- [Local Search Python quickstart](local-search-python-quickstart.md)
203+
- [Local Business Search Java quickstart](local-search-java-quickstart.md)
204+
- [Local Business Search Node quickstart](local-search-node-quickstart.md)
205+
- [Local Business Search Python quickstart](local-search-python-quickstart.md)

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The following code creates a `WebRequest`, sets the access key header, and adds
3939

4040
## Complete code
4141

42-
The Bing Local Search API returns results from the Bing search engine.
42+
The Bing Local Business Search API returns results from the Bing search engine.
4343
1. Download or install the gson library.
4444
2. Create a new Java project in your favorite IDE or editor.
4545
3. Add the code provided below.
@@ -154,6 +154,6 @@ public class LocalSearchCls {
154154
````
155155

156156
## Next steps
157-
- [Local Search quickstart](local-quickstart.md)
158-
- [Local Search Node quickstart](local-search-node-quickstart.md)
159-
- [Local Search Python quickstart](local-search-python-quickstart.md)
157+
- [Local Business Search quickstart](local-quickstart.md)
158+
- [Local Business Search Node quickstart](local-search-node-quickstart.md)
159+
- [Local Business Search Python quickstart](local-search-python-quickstart.md)

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.author: rosh, v-gedod
1414
# Quickstart: Send a query to the Bing Local Business Search API using NodeJS
1515
This article uses NodeJS to demonstrate the Bing Local Business Search API, which is part of Microsoft Cognitive Services on Azure. The API is a REST Web service compatible with any programming language that can make HTTP requests and parse JSON.
1616

17-
The following Node example gets local response data from the query for a *hotel in Bellevue*.
17+
The following Node example gets local business results from the query for a *hotel in Bellevue*.
1818

1919
## Prerequisites
2020
You must have a [Cognitive Services API account](https://docs.microsoft.com/azure/cognitive-services/cognitive-services-apis-create-account) with Bing APIs. The [free trial](https://azure.microsoft.com/try/cognitive-services/?api=bing-web-search-api) is sufficient for this quickstart. Use the access key provided by the free trial.
@@ -80,6 +80,6 @@ Search();
8080
````
8181

8282
## Next steps
83-
- [Local Search quickstart](local-quickstart.md)
84-
- [Local Search Java quickstart](local-search-java-quickstart.md)
85-
- [Local Search Python quickstart](local-search-python-quickstart.md)
83+
- [Local Business Search quickstart](local-quickstart.md)
84+
- [Local Business Search Java quickstart](local-search-java-quickstart.md)
85+
- [Local Business Search Python quickstart](local-search-python-quickstart.md)

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ ms.author: rosh, v-gedod
1313
# Quickstart: Send a query to the Bing Local Business Search API in Python
1414
This article uses Python to demonstrate the Bing Local Business Search API, which is part of Microsoft Cognitive Services on Azure. The API is a REST Web service compatible with any programming language that can make HTTP requests and parse JSON.
1515

16-
The following Python example gets localized search data from a query for *restaurant in Bellevue*.
16+
The following Python example gets localized business results from a query for *restaurant in Bellevue*.
1717

1818
## Prerequisites
1919
You must have a [Cognitive Services API account](https://docs.microsoft.com/azure/cognitive-services/cognitive-services-apis-create-account) with Bing APIs. The [free trial](https://azure.microsoft.com/try/cognitive-services/?api=bing-web-search-api) is sufficient for this quickstart. Use the access key provided by the free trial.
2020

2121
## Code scenario
22-
The following code gets localized data. It is implemented in the following steps:
22+
The following code gets localized results. It is implemented in the following steps:
2323
1. Declare variables to specify the endpoint by host and path.
2424
2. Specify the query parameter.
2525
3. Define the Search function that creates the request and adds the Ocp-Apim-Subscription-Key header.
@@ -56,6 +56,6 @@ print (json.dumps(json.loads(result), indent=4))
5656
````
5757

5858
## Next steps
59-
- [Local Search Java Quickstart](local-search-java-quickstart.md)
60-
- [Local Search C# Quickstart](local-quickstart.md)
61-
- [Local Search Node Quickstart](local-search-node-quickstart.md)
59+
- [Local Business Search Java Quickstart](local-search-java-quickstart.md)
60+
- [Local Business Search C# Quickstart](local-quickstart.md)
61+
- [Local Business Search Node Quickstart](local-search-node-quickstart.md)

0 commit comments

Comments
 (0)