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¶mStr= failed, reason: certificate has expired
However, if I paste “https://fetch.bsmtechsoft.com:8443/songs-rest/servlet/WEBMENU?Operation=1¶mStr=” 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 + ‘¶mStr=’ + 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.