You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a fantastic piece of software! I had quite a difficult time getting logged into echo360 through the selenium browser and thought I would share my solution.
After entering my username into echo360, I was being redirected to the universities SSO and the redirection was causing problems. In fact, I was not able to navigate to any webpage besides google in the chrome instance due to the ssl error below :
This site can’t provide a secure connection googleweblight.com sent an invalid response. ERR_SSL_PROTOCOL_ERROR
I tried adding various options and capabilities to the webdriver Options
What solved the issue was to change change the value of self._useragent in the EchoDownloader class in the file echo360/downloader.py to my user agent which I obtained from the site https://www.whatsmyua.info/
Hopefully this is helpful to someone.
The text was updated successfully, but these errors were encountered:
It's my first time hearing user-agent string have the effect of introducing this error. I'm not sure what is the cause of this. But I'll keep this around in case it happens to others.
This is a fantastic piece of software! I had quite a difficult time getting logged into echo360 through the selenium browser and thought I would share my solution.
After entering my username into echo360, I was being redirected to the universities SSO and the redirection was causing problems. In fact, I was not able to navigate to any webpage besides google in the chrome instance due to the ssl error below :
I tried adding various options and capabilities to the webdriver
Options
but nothing worked.
What solved the issue was to change change the value of
self._useragent
in theEchoDownloader
class in the fileecho360/downloader.py
to my user agent which I obtained from the site https://www.whatsmyua.info/Hopefully this is helpful to someone.
The text was updated successfully, but these errors were encountered: