how to allow access to web page only specific mobile app?

2.1k Views Asked by At

I create web pages for inserting webview in android app.

so I want to allow access to web pages ONLY app?

how to allow access to web page only specific mobile app?

referrer check using app url?

1

There are 1 best solutions below

0
On

You can set your own user-agent string

http://developer.android.com/reference/android/webkit/WebSettings.html#setUserAgentString(java.lang.String)

Something like this

yourWebView.getWebSettings().setUserAgentString("Cool String to be parsed");

Then in your HTML you can catch this UserAgent string. In JavaScript is

navigator.userAgent

If you want other languages to manage it you can do it in PHP or Python to make it server-side.

But if you want true security... there is no a safe way. A kid can also emulates your webview's behaviour.