Skip to content

Commit

Permalink
feat: rest connector - simplify authentication types
Browse files Browse the repository at this point in the history
  • Loading branch information
mbiciin committed Dec 23, 2022
1 parent fda6968 commit a9cf07b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions connectors/http-json/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ The response will contain the status code, the headers and the body of the respo
}
```

### Input (Basic Auth)
### Input (Basic)

```json
{
Expand All @@ -106,7 +106,7 @@ The response will contain the status code, the headers and the body of the respo
}
```

### Input (OAuth)
### Input (OAuth 2.0)

```json
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,20 +55,20 @@
"label": "Type",
"id": "authenticationType",
"group": "authentication",
"description": "Choose the authentication type. Select 'No Auth' if no authentication is necessary",
"description": "Choose the authentication type. Select 'None' if no authentication is necessary",
"value": "noAuth",
"type": "Dropdown",
"choices": [
{
"name": "No Auth",
"name": "None",
"value": "noAuth"
},
{
"name": "Basic Auth",
"name": "Basic",
"value": "basic"
},
{
"name": "Bearer Token Auth",
"name": "Bearer Token",
"value": "bearer"
},
{
Expand Down

0 comments on commit a9cf07b

Please sign in to comment.