-
-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to retrieve your robots #257
Comments
@sihot are you still seeing issues? I'm not aware of a change to the endpoints. |
I see the same issue. This is the full message I get back: |
I am getting the same error on my end as well. |
Got the same error on my Windows Server 2016 machine starting from Dec 4. Looks like they come from the POST requests for LR4 and feeder robot. Interestingly it works just fine on my Windows 11 machine. They use the all the same packages so I wonder what difference can cause this SSL issue. |
The workaround is to use |
Where exactly would I need to add this to the source code? |
Here in |
Finally got around trying this but get this error: NameError: name 'TCPConnector' is not defined |
Make sure you've imported TCPConnector from aiohttp. Also, if you're using this library directly, you shouldn't need to modify session.py. Instead, pass in a ClientSession when creating the Account: from aiohttp import ClientSession, TCPConnector
from pylitterbot import Account
account = Account(
websession=ClientSession(connector=TCPConnector(verify_ssl=False)),
) |
Unable to retrieve your robots: Cannot connect to host v2.api.whisker.iothings.site:443 ssl:True [SSLCertVerificationError: (1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1006)')]
Robots:
anything change ?
The text was updated successfully, but these errors were encountered: