You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-11Lines changed: 6 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ A Python package allowing developers to connect to Dataverse environments for DD
24
24
- Optional pandas integration (`PandasODataClient`) for DataFrame based create / get / query.
25
25
26
26
Auth:
27
-
- Accept only an `azure.core.credentials.TokenCredential` credential.
27
+
- Accept only an `azure.core.credentials.TokenCredential` credential. See full supported list at https://learn.microsoft.com/en-us/dotnet/api/azure.core.tokencredential?view=azure-dotnet.
28
28
- Token scope used by the SDK: `https://<yourorg>.crm.dynamics.com/.default` (derived from `base_url`).
29
29
30
30
## API Reference (Summary)
@@ -73,21 +73,16 @@ Direct TDS via ODBC is not used; SQL reads are executed via the Web API using th
73
73
## Configuration Notes
74
74
75
75
- For Web API (OData), tokens target your Dataverse org URL scope: https://yourorg.crm.dynamics.com/.default. The SDK requests this scope from the provided TokenCredential.
76
-
(Preprod environments may surface newest SQL subset capabilities sooner than production.)
77
76
78
-
### Configuration (DataverseConfig)
79
-
80
-
Pass a `DataverseConfig` or rely on sane defaults:
77
+
### Configuration
81
78
82
79
```python
80
+
from azure.identity import InteractiveBrowserCredential
0 commit comments