Skip to content

Commit

Permalink
changing to use https
Browse files Browse the repository at this point in the history
  • Loading branch information
jgoldverg committed Sep 24, 2024
1 parent 034f5ea commit 4255195
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion odscli/sdk/token_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def readConfig():


def isValidUser(host: str, email: str) -> bool:
isValidURL = "http://" + host + constants.VALIDATE_EMAILV2
isValidURL = "https://" + host + constants.VALIDATE_EMAILV2
body = {'email': email}
req = requests.post(isValidURL, json=body) # Needs to be handled better for errors
return req.json()
Expand Down

0 comments on commit 4255195

Please sign in to comment.