requests.exceptions.ConnectionError: HTTPSConnectionPool(host=‘account.uipath.com’, port=443): Max retries exceeded with url: /oauth/token (Caused by NameResolutionError(“<urllib3.connection.HTTPSConnection object at 0x000002179F151788>: Failed to resolve ‘account.uipath.com’ ([Errno 11001] getaddrinfo failed)”))
Hi
This is from open ai please go through if this is helpful.
The error message you’re encountering in UiPath suggests a problem with connecting to the host “account.uipath.com” over HTTPS. Let’s break down the error message:
requests.exceptions.ConnectionError: This indicates that there is an issue with establishing a connection.HTTPSConnectionPool(host='account.uipath.com', port=443): The error is related to attempting to establish an HTTPS connection to the specified host (“account.uipath.com”) on port 443.Max retries exceeded with url: /oauth/token: This part of the error message indicates that the maximum number of retries to establish a connection has been exceeded.NameResolutionError("Failed to resolve 'account.uipath.com' ([Errno 11001] getaddrinfo failed)"): The root cause of the issue is a failure in resolving the host name “account.uipath.com” to an IP address. The error codeErrno 11001typically indicates a “host not found” or “no such host” error.
1 Like
Yes,but how to solve this problem.It can work before,but can’t work right now.
Check your DNS settings your computer is using a DNS server that can resolve the hostname account.uipath.com .
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.