CertificateManager.BuildPrivateKeyJwtFromJwkJson method

Builds a Private Key JWT for client authentication using the specified JWK JSON string.

public static string BuildPrivateKeyJwtFromJwkJson(string jwkJson, string clientId, 
    string tokenEndpoint)
parameter description
jwkJson The JWK JSON string representing the key.
clientId The client ID (issuer and subject) for the JWT.
tokenEndpoint The token endpoint URL (audience) for the JWT.

Return Value

The generated Private Key JWT as a string.

See Also