Https://us.wio.seeed.io certificate seem to have expired

It seems that the server certificate of https://us.wio.seeed.io has expired on 2022/08/22 23:29:00 GMT.

I am trying to request data, that is sent from my wio node, from my raspberry pi using python’s requests module.
However, I get an error caused by the expiration of the SSL certificate (even though I try to work around it).

Does anyone know how to work around this error or if the SSL certificate is due to be renewed in the future?

Below is the code that caused the error.


import requests
import json

url = "https://us.wio.seeed.io/v1/node/GroveTempHumiSHT31I2C0/temperature?access_token=**my token**"
headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36'}

r = requests.get(url,  headers = headers, verify = False)
print(r)
print(r.text)

(output)
<Response [403]>

Invalid Connection
This Connection is Invalid


A secure connection to us.wio.seeed.io cannot be established.
Normally, when you try to connect securely, sites will present trusted identification to prove that you are going to the right place. However, this site's identity can't be verified.
Site: us.wio.seeed.io
Certificate CN: seeed.io
Certificate Authority: R3
Certificate Validity: Not Before: May 24 23:29:10 2022 GMT
Not After: Aug 22 23:29:09 2022 GMT

Hi, can I ask where you have seen this link, thank you for confirming.

Thanks for your reply.
The URL used in the code is the one displayed after connecting my Wio Node to the Wio Link app via the global server and tapping “View API”.

Sorry, the product Wio Link is currently EOL.

Oh, that’s unfortunate.
Thanks for the information.