Skip to content

Commit 117284e

Browse files
committed
Power App doc freshness pass
1 parent cf5cdae commit 117284e

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

articles/search/search-howto-powerapps.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,11 @@ A connector in Power Apps is a data source connection. In this step, create a cu
6969

7070
* Select the verb `GET`
7171

72-
* For the URL, enter a sample query for your search index (`search=*` returns all documents, `$select=` lets you choose fields). The API version is required. Fully specified, a URL might look like this: `mydemo.search.windows.net/indexes/hotels-sample-index/docs?search=*&$select=HotelName,Description,Address/City&api-version=2024-07-01`. Omit the `https://` prefix.
72+
* For the URL, enter a sample query for your search index (`search=*` returns all documents, `$select=` lets you choose fields). The API version is required. Fully specified, a URL might look like the following example. Notice that the `https://` prefix is omitted.
73+
74+
```http
75+
mydemo.search.windows.net/indexes/hotels-sample-index/docs?search=*&$select=HotelName,Description,Address/City&api-version=2024-07-01
76+
```
7377
7478
* For Headers, type `Content-Type application/json`.
7579
@@ -137,7 +141,7 @@ A connector in Power Apps is a data source connection. In this step, create a cu
137141
```
138142
139143
> [!TIP]
140-
> There is a character limit to the JSON response you can enter, so you might want to simplify the JSON before pasting it. The schema and format of the response is more important than the values themselves. For example, the Description field could be simplified to just the first sentence.
144+
> There's a character limit to the JSON response you can enter, so you might want to simplify the JSON before pasting it. The schema and format of the response is more important than the values themselves. For example, the Description field could be simplified to just the first sentence.
141145
142146
1. Select **Import** to add the default response.
143147
@@ -159,7 +163,7 @@ Provide a [query API key](search-security-api-keys.md#find-existing-keys) for th
159163
160164
:::image type="content" source="./media/search-howto-powerapps/1-11-1-test-connector.png" alt-text="View Properties" border="true":::
161165
162-
1. In the drop down list of operations, select **6. Test**.
166+
1. In the drop-down list of operations, select **6. Test**.
163167
164168
1. In **Test Operation**, select **+ New Connection**.
165169
@@ -171,6 +175,8 @@ Provide a [query API key](search-security-api-keys.md#find-existing-keys) for th
171175
172176
If the test fails, recheck the inputs. In particular, revisit the sample response and make sure it was created properly. The connector definition should show the expected items for the response.
173177
178+
If you're blocked by a Data Loss Prevention (DLP) policy error, review the error message for guidance. You might be able to modify the policy or make your connector nonblockable.
179+
174180
## 3 - Visualize results
175181
176182
In this step, create a Power App with a search box, a search button, and a display area for the results. The Power App will connect to the recently created custom connector to get the data from Azure Search.

0 commit comments

Comments
 (0)