Request
Developing
Sandbox
https://fhir-dev.edvak.com
Sandbox
https://fhir-dev.edvak.com
POST
https://fhir-dev.edvak.com
Client Authentication:
Authorization: Basic Base64Encode(client_id:client_secret)
If your client_id is my-app and client_secret is my-app-secret-123, the encoded value would be:
Authorization: Basic bXktYXBwOm15LWFwcC1zZWNyZXQtMTIz
POST /realms/EDVAK/protocol/openid-connect/token
Content-Type: application/x-www-form-urlencoded
code=abc123&
code_verifier=xyz456&
grant_type=authorization_code&
redirect_uri=https%3A%2F%2Fexample.com%2Fcallback&
client_id=my-public-client
Request
Header Params
Content-Type
string
required
Example:
application/x-www-form-urlencoded
Body Params application/x-www-form-urlencoded
grant_type
string
required
Example:
authorization_code
code
string
required
Example:
<code>
redirect_uri
string
required
Example:
<redirect_uri>
code_verifier
string
required
Example:
<code_verifier>
client_id
string
optional
Example:
<client_id>