How to register the device with user id and display name.. In MFP console, its not showing the same..
Is there anyway to add these 2 in "MFPPush.registerDevice" Function ?
How to register the device with user id and display name.. In MFP console, its not showing the same..
Is there anyway to add these 2 in "MFPPush.registerDevice" Function ?
Copyright © 2021 Jogjafile Inc.
You can see userId in MFP Console whenever user is logged in with
UserLoginSecurity Check in the application.Refer User Authentication tutorial to know more about
UserLoginSecurity Check in MFP 8.0 : linkIn order to set device display name, You need to use
setDeviceDisplayNamein your client Application.The following are the links to API Documentation for
setDeviceDisplayNameAPI.Cordova : link
Android : link
iOS : link
You cannot add these parameters using
MFPPush.registerDevice(). registerDevice() API takes the authentication context (from the security check) and adds the userID and displayName automatically.