Hello,
I have implemented the native phonegap-plugin-push
successfully on Android platform,
however on IOS, I had the infamous CORS issue using WKWebview
.
Generally, What I did in order to bypass this. is whenever a http request is sent to an API I owned, I enabled CORS, and whenever I do not own the API I used the native/http.
The problem is when I use some of the push plugin’s methods (like subscribe to topic) I am ending up with CORS error.
In this case I can’t use native http nor enabling CORS.
What options do I have besides downgrading to old UIWebView
?
Thanks