在 JWT 令牌中设置内容类型的 API 是什么?

What is the API to set content type in JWT token?

在 JWT 令牌中设置内容类型的 API 是什么?我想生成嵌套的 JWT,首先对其进行签名和加密。

库:Jose 0.4.1

我找到路了。

抽象JsonWebStructure的setHeader方法class可以用来设置内容类型

JsonWebSignature 和 JsonWebEncryption 扩展了 JsonWebStructure class,因此我们可以如下使用它。

JsonWebSignature jws = new JsonWebSignature();
jws.setHeader("cty", "jwt");