Push Notification - Device Token

The Push Notification - Device Token feature in Twinr allows you to retrieve the unique device token needed to send push notifications to a user’s device.

Personalized Push Notification feature must be enabled to use this JS Bridge.

We’ve provided the JavaScript function twinr_push_token_fetch() to make it easy for you to fetch the device token along with the platform type (Android or iOS).

To fetch the device token, simply call the twinr_push_token_fetch() function from your website’s JavaScript.

await twinr_push_token_fetch();

The function returns a JSON object with two fields:

  • token: The unique device token required for push notifications.

  • platform: The platform of the user’s device, which will be either "android" or "ios".

Example of a typical response:

{
  "token": "abc123def456ghi789",  // Example device token
  "platform": "ios"               // or "android"
}

Last updated