Is there a way to add aud element in the OAuth 2 with grant type = Auth code with PKCE in postman

Viewed 23

I've added Audience parameter from advanced options but I don't see a parameter added in the postman console.

Below is a sample request & highlighted in bold is the parameter that needs to be added on the authorize request in postman.

https://{ehr_authorize_url}?
response_type=code&
client_id=app-client-id&
redirect_uri=https://{app_redirect_url} &
launch=123&
scope=openid+fhiruser&
state=abc&
aud=https://{fhir_base_url}&
code_challenge={XXXXXXXXX}&
code_challenge_method=S256
0 Answers
Related