【发布时间】:2019-04-08 12:35:04
【问题描述】:
我正在寻找有关 FHIR 上非对称 SMART 的样本。有人可以帮助使用@asymmetrik/sof-strategy 在哪里/如何生成 introspectionUrl 吗?
【问题讨论】:
标签: node.js node-fhir-server-core
我正在寻找有关 FHIR 上非对称 SMART 的样本。有人可以帮助使用@asymmetrik/sof-strategy 在哪里/如何生成 introspectionUrl 吗?
【问题讨论】:
标签: node.js node-fhir-server-core
自省 url 是 OAuth2 服务器的一部分,需要由构建 FHIR 服务器的人员进行设置和配置。我们在两个仓库(https://github.com/Asymmetrik/node-fhir-server-core、https://github.com/Asymmetrik/graphql-fhir)中都使用了该模块,但它需要外部 OAuth2 服务器。你可以在这里阅读更多内容,https://github.com/Asymmetrik/node-fhir-server-core/wiki/Access-Control#available-built-in-options,在这里,http://hl7.org/fhir/smart-app-launch/。
如果您没有与其他人的启用 SMART 的 OAuth2 服务器集成,您可以查看像 https://github.com/mitreid-connect/OpenID-Connect-Java-Spring-Server 这样的项目。我们过去将此服务器用于我们的演示服务器之一,它将为您提供@asymmetrik/sof-strategy 所需的端点。
【讨论】: