Skip to content

Commit 47ab1d1

Browse files
authored
Minor fixes
1 parent 65a609a commit 47ab1d1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/industry/agriculture/ingest-historical-telemetry-data-in-azure-farmbeats.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ Sensor
269269
}
270270
}
271271
```
272-
The following sample request creates a device. This request has input JSON as payload with the request body. Below there is also a sample python script that creates a device model.
272+
The following sample request creates a device. This request has input JSON as payload with the request body.
273273

274274
```bash
275275
curl -X POST "https://<datahub>.azurewebsites.net/Device" -H
@@ -279,13 +279,13 @@ curl -X POST "https://<datahub>.azurewebsites.net/Device" -H
279279
\"description\": \"Test Device 123\"}" *
280280
```
281281

282-
Below is the sample code in Python. Please note that the access token used in this sample is the same that we received during authentication
282+
Below is a sample code in Python. Please note that the access token used in this sample is the same that we received during authentication
283283

284284
```python
285285
import requests
286286
import json
287287

288-
# Got access token - Calling the DeviceModel API
288+
# Got access token - Calling the Device Model API
289289
headers = {
290290
"Authorization": "Bearer " + access_token,
291291
"Content-Type" : "application/json"

0 commit comments

Comments
 (0)