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
As a result, if you instantiate your API with api = UptimeKumaApi("https://localhost:8080", ssl_verify=False), calling api.get_status_page() will fail with an SSL verification error.
The text was updated successfully, but these errors were encountered:
When instantiating an instance of the
UptimeKumaApi
class, you can disable SSL verification via thessl_verify
argument in the constructor:This is then set on the Client:
self.sio = socketio.Client(ssl_verify=ssl_verify)
so any web requests issued by the Client use this variable.However, there is a single
requests.get()
withinget_status_page()
that bypasses the Client, so thessl_verify
arg is not passed:As a result, if you instantiate your API with
api = UptimeKumaApi("https://localhost:8080", ssl_verify=False)
, callingapi.get_status_page()
will fail with an SSL verification error.The text was updated successfully, but these errors were encountered: