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
Right now the add-on only supports connecting to an Emby server using HTTP. HTTPS is not supported. It must also be possible to bypass HTTPS server certification validation by appending |verifypeer=false to URLs passed to Kodi.
How can the add-on determine that it should use HTTPS?
Make certificate verification configurable / optional.
Tell requests and websocket to ignore self-signed certificates.
Append |verifypeer=false to every URL directly used by Kodi.
The text was updated successfully, but these errors were encountered:
Would it be possible to also consider HTTP/2 support as a part of this issue? Plugging in the hyper library into requests for HTTP/2 support is only a single-line addition and should be backwards compatible.
Right now the add-on only supports connecting to an Emby server using HTTP. HTTPS is not supported. It must also be possible to bypass HTTPS server certification validation by appending
|verifypeer=false
to URLs passed to Kodi.requests
andwebsocket
to ignore self-signed certificates.|verifypeer=false
to every URL directly used by Kodi.The text was updated successfully, but these errors were encountered: