Skip to content

Commit ab36fa3

Browse files
authored
Fix rendering issues based on spacing
1 parent c481a5f commit ab36fa3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

docs/auth_credentials.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
> **Note:** Only one type of credential can be used at a time. If multiple credentials are provided, the last one added takes precedence.
44
55
1. **API keys**
6+
67
A unique identifier used to authenticate and authorize requests to an API.
78

89
```python
@@ -12,6 +13,7 @@
1213
```
1314

1415
2. **Bearer tokens**
16+
1517
A temporary access token used to authenticate API requests, typically included in the
1618
Authorization header.
1719

@@ -22,6 +24,7 @@
2224
```
2325

2426
3. **Service account credentials file path**
27+
2528
The file path pointing to a JSON file containing credentials for a service account, used
2629
for secure API access.
2730

@@ -32,6 +35,7 @@
3235
```
3336

3437
4. **Service account credentials string**
38+
3539
JSON-formatted string containing service account credentials, often used as an alternative to a file for programmatic authentication.
3640

3741
```python
@@ -41,4 +45,5 @@
4145
```
4246

4347
5. **Environment variables**
48+
4449
If no credentials are explicitly provided, the SDK automatically looks for the `SKYFLOW_CREDENTIALS` environment variable. This variable must contain a JSON string like one of the examples above.

0 commit comments

Comments
 (0)