Form post extraction options.
Options for extracting and decoding the JWT from a form_post.jwt response
Raw HTML containing the autosubmitted form with the jwt response
Schema for parsing and validating
The compact JWT and decoded JWT data.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
</head>
<body onload="document.forms[0].submit()">
<noscript>
<p>
<strong>Note:</strong> Since your browser does not support JavaScript, you must press the Continue button once to proceed.
</p>
</noscript>
<form action="iowalletexample//cb" method="post">
<div>
<input type="hidden" name="response" value="somevalue" />
</div>
<noscript>
<div>
<input type="submit" value="Continue" />
</div>
</noscript>
</form>
</body>
</html>
Decode a form_post.jwt and return the final JWT. The formData here is in form_post.jwt format as defined in JWT Secured Authorization Response Mode for OAuth 2.0 (JARM)