I have create Push Notification Registration Tree, when I am using the same tree in the postman so at the register callback how can I handle that callback

The TextOutPut callback is to render a QR code in a browser (user agent). Since you are on postman / curl you can extract the values from the HiddenValueCallback. The pushauth://… url has a bunch of parameters which are base64 encoded strings. If you decode them you see that you revealed some endpoints here in this thread :slight_smile:
Usually the Forgerock SDK uses this url to generate the device mechanism and uses the value in the β€˜r’ query parameter to send a reply to AM Server. This triggers the Push Registration node to register the device at Amazon SNS. After this the device information is stored at the user in DS in pushDeviceProfiles attribute.
When using the FR Authenticator and still using postman you have to render the QR code by some QR code renderer, maybe you find a trustworthy online. After this scan the QR code with the authenticator app and things go on.
When you develop with yourself leveraging the FR SDK you need to provide the pushauth://… url to the SDK. The mechanism has to be generated on the device you can’t get away with just postman. There is a cool community post which provides the insights Push Protocol – Challenge/Response & Registration Redux

2 Likes