Skip to content

Latest commit

 

History

History

create-client-assertion

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Esempio di lancio:

  1. Recarsi alla root del progetto e buildare il progetto con il comando:

    • ./mvnw clean package
      (ambiente Unix)
    • mvnw.cmd clean package
      (ambiente Windows)

    Verrà creato il JAR nella cartella target all'interno della root del progetto.

  2. Eseguire il JAR con le options opportune:

    java -jar create-client-assertion-1.0-SNAPSHOT-jar-with-dependencies.jar --kid=$kid \
    --alg=RS256 \
    --typ=JWT \
    --issuer=$iss \
    --subject=$iss \
    --audience=$audience \
    --purposeId=$purposeId \
    --keyPath=<path to private key>

In alternativa è possibile da IDE avviare direttamente la classe it.pagopa.pdnd.CreateClientAssertionApp (sempre con le options opportune)