Yes, that's right. You would set your jwks.json U...
# general
c
Yes, that's right. You would set your jwks.json URL in the ClientApplication details page:
y
@cody @rahul1 just to confirm that I correctly understand the private_jwt_key flow: Step 1. Setup jwks.json endpoint like https://codexhealth.com/.well-known/jwks.json - or something like this. Step 2. Codex -> Send the signed jwt request to get patient by id Step 3. MedPlum -> Get jwks.json endpoint to get key information and validate the request was signed properly Step 4. We are good and returns the patient information, right?
and jwks_uri field says that it should not private_key_jwt but client_secret_jwt right?
c
Client/secret will still work. In order to use the private_key_jwt, you must also send
client_assertion_type: 'urn:ietf:params:oauth:client-assertion-type:jwt-bearer',
y
thank you
https://build.fhir.org/ig/HL7/smart-app-launch/app-launch.html#request-4 based on this documentation
aud
should be required parameter are you planning to add it here: https://www.medplum.com/docs/api/oauth/authorize#request-parameters ?
174 Views