Whatever message this page gives is out now! Go check it out!
verifySignedJWT(token, SignOptions, config)| Parameter | Description | Required |
| token | A signed token created by ColdFusion. | Yes |
| signOptions | Create the signature using the struct below:
| Yes |
| config | A struct with the following values:
| Yes |
<cfset k=getKeyPairfromkeystore({
"keystore" : "test_jws1.keystore",
"keystorePassword": "****",
"keypairPassword": "****",
"keystoreAlias": "contentKey"
}) >
<cfset c = {
"algorithm" = "RS256",
"generateIssuedAt"= true,
"generateJti"=true
}>
<cfset config = {
"returnType" = "struct"
}>
<cfset verifyjws = VerifySignedJWT(#URL.jws#,k.getPublic(),c)>
<cfdump var="#verifyjws#">