Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
burnash committed May 11, 2024
1 parent 07a6f2e commit 3c9237f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/website/docs/dlt-ecosystem/verified-sources/rest_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ One of the most common method is token-based authentication. To authenticate wit
"client": {
...
"auth": {
"token": dltd.secrets["your_api_token"],
"token": dlt.secrets["your_api_token"],
},
...
},
Expand Down Expand Up @@ -423,7 +423,7 @@ from dlt.sources.helpers.rest_client.auth import BearerTokenAuth
config = {
"client": {
"auth": BearTokenAuth(dltd.secrets["your_api_token"]),
"auth": BearTokenAuth(dlt.secrets["your_api_token"]),
},
...
}
Expand Down

0 comments on commit 3c9237f

Please sign in to comment.