Skip to content

Commit

Permalink
Update auth names
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler-mairose-sp committed Sep 26, 2024
1 parent c23c207 commit 69adea9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sailpoint/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,21 +193,21 @@ def auth_settings(self):
"""
auth = {}
if self.access_token is not None:
auth["UserContextAuth"] = {
auth["userAuth"] = {
"type": "oauth2",
"in": "header",
"key": "Authorization",
"value": "Bearer " + self.access_token,
}
if self.access_token is not None:
auth["UserContextAuth"] = {
auth["userAuth"] = {
"type": "oauth2",
"in": "header",
"key": "Authorization",
"value": "Bearer " + self.access_token,
}
if self.access_token is not None:
auth["ApplicationOnlyAuth"] = {
auth["applicationAuth"] = {
"type": "oauth2",
"in": "header",
"key": "Authorization",
Expand Down

0 comments on commit 69adea9

Please sign in to comment.