Skip to content

GEDYSIntraWare/cordova-plugin-webview-proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cordova-plugin-webview-proxy

Work in progress plugin.

Cordova Plugin to proxy http(s) requests on iOS without CORS and Cookie restrictions

With this plugin you can do requests to remote servers just like you would do normally. Cookies and CORS restrictions don't apply here because the requests is performed by native code.

You just need to change the URL:

const response = await fetch(window.WebviewProxy.convertProxyUrl(url));
console.debug(response);

This plugin uses the WKURLSchemeHandler provided by WKWebView. It requires a Work in Progress Integration in cordova-ios: apache/cordova-ios#1030