files/en-us/web/api/deviceorientationevent/requestpermission_static/index.md
{{APIRef("Device Orientation Events")}}{{SeeCompatTable}}{{securecontext_header}}
The requestPermission() static method of the {{domxref("DeviceOrientationEvent")}} interface requests the user's permission to access device orientation data from the accelerometer and gyroscope sensors. It can also request permission to access magnetometer data when absolute orientation is needed. This method requires {{Glossary("transient activation")}}, meaning that it must be triggered by a UI event such as a button click.
DeviceOrientationEvent.requestPermission()
DeviceOrientationEvent.requestPermission(absolute)
absolute {{optional_inline}}
true, the permission request also includes the magnetometer sensor. Defaults to false.A {{jsxref("Promise")}} that resolves with a string which is either "granted" or "denied".
The returned promise rejects with the following exceptions:
NotAllowedError {{domxref("DOMException")}}
"prompt" and the calling function does not have {{Glossary("transient activation")}}.Transient user activation is required. The user has to interact with the page or a UI element in order for this feature to work.
document.querySelector("button").addEventListener("click", async () => {
if (typeof DeviceOrientationEvent.requestPermission !== "function") {
// The feature is not available, or does not need permission.
return;
}
const permission = await DeviceOrientationEvent.requestPermission();
if (permission === "granted") {
window.addEventListener("deviceorientation", (event) => {
console.log(`Alpha: ${event.alpha}`);
console.log(`Beta: ${event.beta}`);
console.log(`Gamma: ${event.gamma}`);
});
}
});
When absolute orientation data is needed (e.g., for compass-based applications), pass true as the absolute parameter. This additionally requests access to the magnetometer.
document.querySelector("button").addEventListener("click", async () => {
if (typeof DeviceOrientationEvent.requestPermission !== "function") {
return;
}
const permission = await DeviceOrientationEvent.requestPermission(true);
if (permission === "granted") {
window.addEventListener("deviceorientationabsolute", (event) => {
console.log(`Absolute alpha: ${event.alpha}`);
});
}
});
{{Specifications}}
{{Compat}}