Skip to content

Commit

Permalink
Update HTTPServerHandler.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bsatoriu authored Nov 8, 2023
1 parent 9ef1d02 commit f7ed651
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions maap/utils/HTTPServerHandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def get_access_token_from_url(self, url, code):
'redirect_uri': REDIRECT_URL
}

r = requests.post(url, data=body, auth=('MAAP', 'Icbinb1!'))
r = requests.post(url, data=body, auth=('edl_client_name', 'edl_client_password'))

if r.status_code == 401:
return "unauthorized"
Expand All @@ -53,4 +53,4 @@ def get_access_token_from_url(self, url, code):

# Disable logging from the HTTP Server
def log_message(self, format, *args):
return
return

0 comments on commit f7ed651

Please sign in to comment.