Auto-grant permissions

Automatically grants all required app runtime permissions to provide users with a seamless experience.

Enable Auto-grant permissions

Eliminate the hassle of manual permission grants. This feature ensures app runtime permissions are automatically handled for each session. Examples of runtime permissions include location, external storage, microphone, camera, and more. Simplify your users' journey.

It can be enabled through a query parameter or the JavaScript SDK.

With Query Parameter

Add the grantPermissions=true query parameter to your app or embed URL

&grantPermissions=true

See Query Params Reference for more information.

With JavaScript SDK

Set grantPermissions: true in the configuration e.g.

await client.config({
    grantPermissions: true,
    ...
})

See Configuration for more information.

Last updated