Skip to content

Commit

Permalink
fix: pr comment
Browse files Browse the repository at this point in the history
  • Loading branch information
sattvikc committed Sep 11, 2024
1 parent b79ddfa commit ca95c13
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public String getPath() {
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws IOException, ServletException {
JsonObject input = InputParser.parseJsonObjectOrThrowError(req);
String iss = InputParser.parseStringOrThrowError(input, "iss", false); // input validation
JsonObject bodyFromSDK = InputParser.parseJsonObjectOrThrowError(input, "body", false);
JsonObject bodyFromSDK = InputParser.parseJsonObjectOrThrowError(input, "inputBody", false);

Boolean useStaticKeyInput = InputParser.parseBooleanOrThrowError(input, "useStaticSigningKey", true);

Expand Down

0 comments on commit ca95c13

Please sign in to comment.