如何在Azure Data Factory中进行RSASHA256
我想生成一个用于Adobe API身份验证的JWT。 https://developer.adbevecter.adobe.com/developer-console-console-console/docs /指南/身份验证/JWT/ 我将如何在Azure数据工厂生成JWT?
我目前坚持不知道如何在数据工厂中进行RSASHA。有可能吗?如果是这样?
我的有效负载是:
{
"exp": 1550001438,
"iss": "fdsfgsdf@AdobeOrg",
"sub": "[email protected]",
"https://ims-na1.adobelogin.com/s/ent_dataservices_sdk": true,
"aud": "https://ims-na1.adobelogin.com/c/redacted"
}
我的标题是:
{
"alg": "RS256",
"typ": "JWT"
}
I want to generate a JWT for Authentication to the Adobe API.
https://developer.adobe.com/developer-console/docs/guides/authentication/JWT/
How would I generate the JWT in Azure Data Factory?
I'm currently stuck with not knowing how to do the RSASHA in Data Factory. Is that possible? If so how?
My Payload is:
{
"exp": 1550001438,
"iss": "fdsfgsdf@AdobeOrg",
"sub": "[email protected]",
"https://ims-na1.adobelogin.com/s/ent_dataservices_sdk": true,
"aud": "https://ims-na1.adobelogin.com/c/redacted"
}
My Header is:
{
"alg": "RS256",
"typ": "JWT"
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试在Azure Batch中编写逻辑,并在Azure Data Factory中使用自定义活动来完成任务。
You may try to write the logic in Azure Batch and use Custom activity in Azure Data Factory to accomplish the task.