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?
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?
Copyright © 2021 Jogjafile Inc.
You can set your own user-agent string
http://developer.android.com/reference/android/webkit/WebSettings.html#setUserAgentString(java.lang.String)
Something like this
Then in your HTML you can catch this UserAgent string. In JavaScript is
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.