-
Notifications
You must be signed in to change notification settings - Fork 11
How do I get Infobip's unique (push registration) ID
Olga Koroleva edited this page Oct 20, 2022
·
1 revision
In order to get Infobip's unique push registration identifier issued by the server you need to implement the following code:
var installation = await InfobipMobilemessaging.fetchInstallation();
print('Push Registration Id: ' + installation.getPushRegistrationId().toString());
This identifier:
- matches one to one with FCM/APNs cloud token of the particular application installation
- is only available after
registrationUpdated
event - does not change for the whole lifetime of the application installation
- Library events
- Server errors
- Users and installations
- Messages and notifications management
- Inbox
- Privacy settings
- In-app chat
- WebRTC Calls and UI
- Migration Guides