We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29dd0df commit d6586c3Copy full SHA for d6586c3
1 file changed
README.md
@@ -19,7 +19,8 @@ The source code below demonstrates the CRUD operations for Thing objects. Operat
19
import frost_sta_client as fsc
20
21
url = "exampleserver.com/FROST-Server/v1.1"
22
-service = fsc.SensorThingsService(url)
+auth_handler = fsc.AuthHandler(username="admin", password="admin") # if server is configured for basic auth, else None
23
+service = fsc.SensorThingsService(url, auth_handler=auth_handler)
24
```
25
#### Creating Entities
26
```python
0 commit comments