WiiM Pro Plus API, NET::ERR_CERT_AUTHORITY_INVALID

rexx

New member
Joined
Feb 27, 2024
Messages
4
I have a little program that is trying to communicate with my WiiM Pro Plus.
When I send the url
https://192.168.0.224/httpapi.asp?command=getPlayerStatus
I get no response.

When I aim my browser at the same url, I get

Your connection isn't private​

Attackers might be trying to steal your information from 192.168.0.224 (for example, passwords, messages, or credit cards).

NET::ERR_CERT_AUTHORITY_INVALID

Is there something obvious I am missing...?
I tried http (not https) but that doesn't work either.

1709138665346.png 1709138707692.png
 
Looks like self signed cert. Depends what library you’re using there is a way to disable verification. In Python it will look like


Python:
requests.get('https://example.com', verify=False)
 
Thank you. I was able to switch from using Windows Msxml2.ServerXMLHTTP to MSXML2.XMLHTTP GET which has the verify option you showed.
 
Back
Top