Here is my backend function
import {fetch} from 'wix-fetch';
export function bulletinFeed() {
return fetch("https://some.cool.url", {
"method": "post",
"headers": {
"Content-Type": "application/json"
},
"body": JSON.stringify({"testKey": "testValue"})
}).then((res) => {
return res;
});
}
This my client-side code:
import {bulletinFeed} from 'backend/bulletin.jsw';
$w.onReady(() => {
bulletinFeed().then((bulletins) => {
console.log(bulletins);
});
});
I have an express app that I have set this POST endpoint up on. I can see the data coming through on my server logs, but my Wix website just returns an error on client. Picture of this error attached.
Does anyone know why this incredibly simple fetch call is not working?
PS - Love wix code