我如何才能找出在 Platform of Trust 中创建身份时可以使用的可用上下文链接?

How can I find out what are the available context links which can be used when creating identities in Platform of Trust?

我想用房间和传感器创建身份网络。我在 API documentation 中找到了 Group 的一些示例:

curl -i -X POST \
   -H "Authorization: Bearer <ACCESS_TOKEN>" \
   -H "Content-Type: application/json" \
   -d \
"{
  \"context\": \"https://standards.lifeengine.io/v1/Context/Identity/Group/\",
  \"type\": \"Group\",
  \"data\": {
    \"name\": \"Company Oy\"
  }
}" "https://api-sandbox.oftrust.net/identities/v1"

如果我想创建 Room、Sensor,如何找出需要用作上下文值的内容?

您可以使用 Platform of Trust 构建的上下文 API。 API 提供了列出信任平台的可用 JSON-LD 上下文的方法。

使用以下方法获取平台中所有支持的上下文:

curl -i -X GET \
 "https://api-sandbox.oftrust.net/contexts/v1/"

要创建房间标识,您应该这样做:

curl -i -X POST \
   -H "Authorization: Bearer <ACCESS_TOKEN>" \
   -H "Content-Type: application/json" \
   -d \
"{
  \"context\": \"https://standards.oftrust.net/v1/Context/Identity/Room/\",
  \"type\": \"Room\",
  \"data\": {
    \"name\": \"Bedroom\"
  }
}" "https://api-sandbox.oftrust.net/identities/v1"