IPWorks Auth 2020 Node.js Edition

Questions / Feedback?

ClaimInfo Event

Fires once for each claim.

Syntax

jwt.on('ClaimInfo', [callback])

Callback

The 'callback' is called when the 'ClaimInfo' event is emited.

function(e){ }

The argument 'e' has the following properties:

e.name
e.value
e.dataType

Remarks

When Decrypt, Verify or Parse is called this event will fire once for each claim in the JWT.

Name is the name of the claim.

Value is the value of the claim.

DataType specifies the JSON data type of the value. Possible values are:

  • 0 (Object)
  • 1 (Array)
  • 2 (String)
  • 3 (Number)
  • 4 (Bool)
  • 5 (Null)

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Auth 2020 Node.js Edition - Version 20.0 [Build 8155]