Closed awood314 closed 8 months ago
Hi Alex
Someone else had a similar problem and we solved it with this commit: https://github.com/Tracktion/choc/commit/77c6a89a9f2913169fb33e4857ee9d54844661dd
Does that work for you?
Unfortunately not. I believe that would fix CORS issues for navigation requests, but then you run into cross-origin problems when those resources make requests via XHR/fetch from javascript.
As far as I can tell, aside from making changes to the back-end to send the appropriate CORS headers to the allowed origin, the only ways around this on the client side are:
I have a change in my branch that supports a user-provided options customUriScheme, customUriHome (following the pattern of userAgent) to specify the scheme and domain. Change was quite simple and can be seen here:
https://github.com/cannerycoders/choc/commit/3fe379c44f1c8bbbe98bb5a505889ee0433a5532
I originally implemented it as an #ifdef, but found the need for multiple schemes within the same runtime.
I've implemented this with a few differences, but should do what you need. Let me know if it gives you any trouble..
When using the WebView with the
fetchResource
option, we get blocked by CORS security protection when web resources make HTTP requests to our back-end services. In order to be deliberate about what origin those services see and allow, something we've implemented in our fork is the ability to override the components of the URI scheme:choc://
application URI scheme andchoc.choc
domainchoc.localhost
domainThis doesn't implement Linux, but just thought I'd drop it here in case you may find it useful: https://github.com/splice/choc/pull/1
Thanks!