We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue: Using a valid OAuth token for authorization against the FHIR Server causes "401 Unauthorized" HTTP status code in tag v0.5.2.
Cause: In the extraction/fhir.py script, there is a colon (":") in line 17 behind "Bearer" which causes the issue:
self._headers['Authorization'] = f"Bearer: {token}"
Solution: Remove the colon and token authorization works as intended.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue:
Using a valid OAuth token for authorization against the FHIR Server causes "401 Unauthorized" HTTP status code in tag v0.5.2.
Cause:
In the extraction/fhir.py script, there is a colon (":") in line 17 behind "Bearer" which causes the issue:
Solution:
Remove the colon and token authorization works as intended.
The text was updated successfully, but these errors were encountered: