Hi, my FHIR server uses JWT authentication mechanism and it seams I cannot use Vanya Client to connect to it. As an example, below is commands I use to connect to it on terminal using ‘curl’:
user@machine [ ~ ]$ TOKEN=$(curl -X GET -H 'Authorization: <Authorization string>' -d 'grant_type=client_credentials&_format=application/json+fhir' https://server.domain.com/delegate/token | jq -r '.access_token')
user@machine [ ~ ]$ curl -H "Authorization: Bearer ${TOKEN}" -H "Content-Type: application/fhir+json" -H "prefer: return=representation" "https://server.domain.com/r4/Organization?_summary=count&_total=accurate" | jq
How can I configure Vanya Client for my use case?
Thanks in advance.