Nested JWT
$client->keysManager()
->use_for_encDec(),
->set_kid('The key Id of the key') //OPTIONNAL
->set_secret_key('the_secret')
->build();
$client->keysManager()
->use_for_encDec(),
->set_kid('The key Id of the key') //OPTIONNAL
->set_private_key_pem_file('/path/to/privateKey.pem')
->build();Last updated