Puzzling Wix Fetch certificate error

I have been off this project for a few months. I came back and tried to use the web site but found I was getting the following error:

.catch err: FetchError: request to https://fetch.bsmtechsoft.com:8443/songs-rest/servlet/WEBMENU?Operation=1&paramStr= failed, reason: certificate has expired

However, if I paste “https://fetch.bsmtechsoft.com:8443/songs-rest/servlet/WEBMENU?Operation=1&paramStr=” into a browser I get a valid JSON response. I also confirmed that fetch.bsmtechsoft.com has a valid certificate.

This is the code used in the back end web module:

import {fetch} from ‘wix-fetch’;

export function webMenuRtn(operation, paramLine) {
const url = ‘https://fetch.bsmtechsoft.com:8443/songs-rest/servlet/WEBMENU?Operation=’ + operation + ‘&paramStr=’ + paramLine;

console.log("Url: " + url); 
	return fetch(url, {method: 'get'}) 
	.then(response => response.json()) 
	.catch(err => console.log(".catch err: " + err)); 

}

Any help would be greatly appreciated.

Does Wix do any caching of certificates? If so, how can you clear them?