Hi,
If I run the code in the p5 web editor, I get this error :
TypeError {stack: ""}
This is somehow cryptic and I don’t really know what is the formatting behind this.
However the httpPost
function is using the fetch
function behind the scenes and I tried running that in a new tab (in Firefox):
fetch('http://colormind.io/api/', {method: 'POST', body: postData})
.then(data => data.json())
.then(json => console.log(json))
.catch(err => console.log(err));
And effectively there’s an error related to CORS :
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://colormind.io/api/. (Reason: CORS request did not succeed).
TypeError: NetworkError when attempting to fetch resource.
This is caused by the fact that the creators of colormind.io didn’t enabled CORS headers and allowed requests from all origins.
Since fetch is using the Cross-Origin Ressource Sharing policy, you can read more about it here :
I also tried the JavaScript example at the end of the api page and it still gives me a CORS error. Most of the time it’s really anoying specially with APIs but it’s meant to be a security layer.
So you can contact the API provider asking them to add the CORS headers.
You can also take a look at that nice article, specially the Solutions section :