如何将API响应映射到B2C自定义策略中的输出声明?



我在B2C自定义策略中使用技术配置文件调用REST API,它返回如下格式

{
"value": [
{
"id":"00000000000"
"name": "",
}
]
}

那么如何获得id并将其映射到输出声明呢?请告诉我一个方法,我已经研究了,但到目前为止还没有找到解决办法。

你试过了吗?https://learn.microsoft.com/en-us/azure/active-directory-b2c/json-transformations getclaimfromjson

您想提取value.0.id

在这里你可以看到json示例:https://github.com/azure-ad-b2c/unit-tests/blob/main/claims-transformation/json/CT_GetClaimFromJson.xml

相关内容

  • 没有找到相关文章

最新更新