cordova-plugin-webview-proxy

0.0.5 • Public • Published

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);

To delete all Cookies use this:

window.WebviewProxy.clearCookie();

Make sure you are using a custom scheme with your iOS platform

This plugin uses the WKURLSchemeHandler provided by WKWebView. It requires the latest version of cordova-ios.

You enable the custom scheme by setting these preferences in config.xml

<preference name="scheme" value="app" />
<preference name="hostname" value="testapp"/>

Testing this plugin

This test app with custom pages and a simple backend is helpful for testing and developing this plugin.

/cordova-plugin-webview-proxy/

    Package Sidebar

    Install

    npm i cordova-plugin-webview-proxy

    Weekly Downloads

    11

    Version

    0.0.5

    License

    MIT

    Unpacked Size

    12.8 kB

    Total Files

    8

    Last publish

    Collaborators

    • niklasmerz
    • btietze