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
* added clientID to sso.py params
* use clientID in __init__.py, updated values in sso.py, tests, and README for sdk
* added environment_id to object field of event_action.py
* removed project_id from object field in event_action.py
* update test fixtures to use environment_id instead of project_id
* removed project_id environment variable from __init__.py
* improving client_id test fixtures after merging feature/ch4528/python-use-client-id-in-init-py
* fixing tests
* fixed formatting errors with black
* re-ran black with black==19.10b0 instead of latest version to match with semaphore
* requested changes made
* requested changes to sso.py
* requested changes made, falling back to project_id with deprecation
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,12 +16,12 @@ python setup.py install
16
16
17
17
## Getting Started
18
18
19
-
The package will need to be configured with your [api key](https://dashboard.workos.com/api-keys) at a minimum and [project id](https://dashboard.workos.com/sso/configuration) if you plan on utilizing SSO:
19
+
The package will need to be configured with your [api key](https://dashboard.workos.com/api-keys) at a minimum and [client id](https://dashboard.workos.com/sso/configuration) if you plan on utilizing SSO:
20
20
```python
21
21
import workos
22
22
23
23
workos.api_key = sk_abdsomecharactersm284
24
-
workos.project_id=project_b27needthisforssotemxo
24
+
workos.client_id=client_b27needthisforssotemxo
25
25
```
26
26
27
27
For your convenience, a client is available as an entry point for accessing the WorkOS feature set:
0 commit comments