Cross-Origin Read Blocking (CORB)

Hi Guys

I have tested a nice bit of JSON to grab the latest posts from my existing WordPress site, but when trying to access the API Webflow is blocking it with:-

Cross-Origin Read Blocking (CORB) blocked cross-origin response https://slickmedia.co.uk/blog/feed/json with MIME type application/json. See Cross-Origin Read Blocking (CORB) - Chrome Platform Status for more details.

To try and get around this I have wrapped the code up in a .js file and tried serving it up from a secure external site, but Webflow still blocks.

Is there any way to get Webflow to allow access?

Thanks

Glenn

@glennyboy wondering if you ever found a solution to this…

To avoid CORS all sites must use http or https. If not you will have the cors problem

Hi @myonke
I’m sorry for the late reply, but yes I did resolve the issue using:-
https://cors-anywhere.herokuapp.com/
Reference via their server first and then your script like:-
https://cors-anywhere.herokuapp.com/https://yourdomain.com/blog/feed/json
Cheers
Glenn

1 Like