We have an Android application that uses our website in its application. However, to prevent clicks, we have the following directive in our proxy configurations.
Title Add X-FRAME-OPTIONS "SAMEORIGIN"
This is a very common Cross-Origin resource sharing strategy.
Unfortunately, Webview in Android has a beginning like file:// , which is different from the domain we use. This results in an error that sameorigin to display x-frame-options on the sameorigin .
What strategies (both on the proxy and on the client side) Can I use so that the Android application can interact with our site (without FULL deleting the same)?
source share