This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The Permissions.query() method of the Permissions interface returns the state of a user permission on the global scope.
Syntax
navigator.permissions.query(PermissionDescriptor).then(function(permissionStatus) { ... })
Parameters
PermissionDescriptor- An object that sets options for the
queryoperation consisting of a comma-separated list of name-value pairs. The available options are:name: The name of the API whose permissions you want to query. Valid values are'geolocation','midi','notifications','push', 'persistent-storage', 'camera' and 'microphone'.userVisibleOnly: (Push only, not supported in Firefox — see the Browser Support section below) Indicates whether you want to show a notification for every message or be able to send silent push notifications. The default isfalse.sysex: (Midi only) Indicates whether you need and/or receive system exclusive messages. The default isfalse.
Note: As of Firefox 44, the permissions for Notifications and Push have been merged. If permission is granted (e.g. by the user, in the relevant permissions dialog), navigator.permissions.query() will return true for both notifications and push.
Note: The persistent-storage permission allows an origin to use a persistent box (i.e persistent storage) for its storage, as per the Storage API.
Returns
A Promise that resolves to a PermissionStatus object.
Exceptions
| Exception | Explanation |
|---|---|
TypeError |
Retrieving the PermissionDescriptor information failed in some way, or the permission doesn't exist or is currently unsupported (e.g. midi, or push with userVisibleOnly). |
Example
navigator.permissions.query({name:'geolocation'}).then(function(result) {
if (result.state == 'granted') {
showLocalNewsWithGeolocation();
} else if (result.state == 'prompt') {
showButtonToEnableLocalNews();
}
// Don't do anything if the permission was denied.
});
Specification
| Specification | Status | Comment |
|---|---|---|
| Permissions The definition of 'query()' in that specification. |
Working Draft | Initial definition. |
Browser Support
We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
|---|---|---|---|---|---|
| Basic support | 43.0 | 46 (46) 49 (49)[1] |
? | ? | ? |
persistent-storage |
? | 53 (53) | ? | ? | ? |
camera and microphone |
64.0 | ? | ? | ? | ? |
| Feature | Android | Android Webview | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile | Chrome for Android |
|---|---|---|---|---|---|---|---|
| Basic support | No support | 43.0 | 46.0 (46) 49.0 (49)[1] |
? | ? | ? | 43.0 |
persistent-storage |
? | ? | 53 (53) | ? | ? | ? | ? |
camera and microphone |
? | ? | ? | ? | ? | ? | 64.0 |
[1] As of version 49, Firefox no longer supports the 'push' PermissionDescriptor dictionary type (referred to in the spec as PushPermissionDescriptor); this is because Firefox relies on a quota system for controlling the userVisibleOnly status instead, and was throwing an error when it encountered a PushPermissionDescriptor instance. With this dictionary removed, Firefox now simply ignores it.