fix docs for python sdk with typo for ClientId and BaseURL along with calls with .go instead of .py

This commit is contained in:
darrell-thobe-sp
2024-04-22 10:54:55 -04:00
parent d0d0ef21ed
commit 8447edfae5
4 changed files with 8 additions and 8 deletions

View File

@@ -95,7 +95,7 @@ You must provide configuration to the SDK so it can authenticate to your SailPoi
### Configuration File
The SDK requires a configuration file to be named "config.json". Within the file, provide these key/value pairs: `ClientID`, `ClientSecret`, `BaseUrl`.
The SDK requires a configuration file to be named "config.json". Within the file, provide these key/value pairs: `ClientId`, `ClientSecret`, `BaseURL`.
<details>
<summary>CLI Assisted <em>(Recommended)</em></summary>
@@ -117,9 +117,9 @@ sail sdk init config --env devrel
```json
{
"ClientID": "g0567b766b413b22c05c66e75d532f1b",
"ClientId": "g0567b766b413b22c05c66e75d532f1b",
"ClientSecret": "cabd0e950a7230b63c1ff45be33fb22065b382b6251a73c61177a8bb5482fcc7",
"BaseUrl": "https://[tenant].api.identitynow.com"
"BaseURL": "https://[tenant].api.identitynow.com"
}
```
@@ -134,9 +134,9 @@ Create a file named "config.json", and provide these key/value pairs: `ClientID`
```json
{
"ClientID": "g0567b766b413b22c05c66e75d532f1b",
"ClientId": "g0567b766b413b22c05c66e75d532f1b",
"ClientSecret": "cabd0e950a7230b63c1ff45be33fb22065b382b6251a73c61177a8bb5482fcc7",
"BaseUrl": "https://[tenant].api.identitynow.com"
"BaseURL": "https://[tenant].api.identitynow.com"
}
```