PermissionRequest
abstract class PermissionRequest
kotlin.Any | |
↳ | android.webkit.PermissionRequest |
This class defines a permission request and is used when web content requests access to protected resources. The permission request related events are delivered via WebChromeClient#onPermissionRequest
and WebChromeClient#onPermissionRequestCanceled
. Either grant()
or deny()
must be called in UI thread to respond to the request. New protected resources whose names are not defined here may be requested in future versions of WebView, even when running on an older Android release. To avoid unintentionally granting requests for new permissions, you should pass the specific permissions you intend to grant to grant()
, and avoid writing code like this example:
permissionRequest.grant(permissionRequest.getResources()) // This is wrong!!!
Summary
Constants | |
---|---|
static String |
Resource belongs to audio capture device, like microphone. |
static String |
Resource will allow sysex messages to be sent to or received from MIDI devices. |
static String |
Resource belongs to protected media identifier. |
static String |
Resource belongs to video capture device, like camera. |
Public constructors | |
---|---|
Public methods | |
---|---|
abstract Unit |
deny() Call this method to deny the request. |
abstract Uri! |
Call this method to get the origin of the web page which is trying to access the restricted resources. |
abstract Array<String!>! |
Call this method to get the resources the web page is trying to access. |
abstract Unit |
Call this method to grant origin the permission to access the given resources. |
Constants
RESOURCE_AUDIO_CAPTURE
static val RESOURCE_AUDIO_CAPTURE: String
Resource belongs to audio capture device, like microphone.
Value: "android.webkit.resource.AUDIO_CAPTURE"
RESOURCE_MIDI_SYSEX
static val RESOURCE_MIDI_SYSEX: String
Resource will allow sysex messages to be sent to or received from MIDI devices. These messages are privileged operations, e.g. modifying sound libraries and sampling data, or even updating the MIDI device's firmware. Permission may be requested for this resource in API levels 21 and above, if the Android device has been updated to WebView 45 or above.
Value: "android.webkit.resource.MIDI_SYSEX"
RESOURCE_PROTECTED_MEDIA_ID
static val RESOURCE_PROTECTED_MEDIA_ID: String
Resource belongs to protected media identifier. After the user grants this resource, the origin can use EME APIs to generate the license requests.
Value: "android.webkit.resource.PROTECTED_MEDIA_ID"
RESOURCE_VIDEO_CAPTURE
static val RESOURCE_VIDEO_CAPTURE: String
Resource belongs to video capture device, like camera.
Value: "android.webkit.resource.VIDEO_CAPTURE"
Public constructors
PermissionRequest
PermissionRequest()
Public methods
getOrigin
abstract fun getOrigin(): Uri!
Call this method to get the origin of the web page which is trying to access the restricted resources.
Return | |
---|---|
Uri! |
the origin of web content which attempt to access the restricted resources. |
getResources
abstract fun getResources(): Array<String!>!
Call this method to get the resources the web page is trying to access.
Return | |
---|---|
Array<String!>! |
the array of resources the web content wants to access. |
grant
abstract fun grant(resources: Array<String!>!): Unit
Call this method to grant origin the permission to access the given resources. The granted permission is only valid for this WebView.
Parameters | |
---|---|
resources |
Array<String!>!: the resources granted to be accessed by origin, to grant request, the requested resources returned by getResources() must be equals or a subset of granted resources. This parameter is designed to avoid granting permission by accident especially when new resources are requested by web content. |