在我之前的问题中
Azure Media Services Encoding Job Callback to URL
建议Azure Media Services“支持WebHooks的通知功能”可以在编码作业完成时回调到URL。我很难让它工作。
采取的步骤:
-
创建并测试了一个Azure函数,该函数能够向我的任意回调URL发送POST请求。
-
使用REST API创建NotificationEndPoint并检索Id(类似于
nb:nepid:UUID:e9203dcb-b6a0-4b44-3cc6-69c4a573bb8d
-
现在尝试将通知添加到我的编码作业中。Job create REST API调用的JSON负载如下:
{
"Name": "TestJob",
"InputMediaAssets" : [
{
"__metadata" : {"uri" : "https://media.windows.net/api/AssetsAssets('nb%3Acid%3AUUID%3A3679cd1f-74ba-4374-8d4b-8c26feba4e1d')"}
}
],
"JobNotificationSubscriptions": [
{
"NotificationEndPointId": "nb:nepid:UUID:e9203dcb-b6a0-4b44-3cc6-69c4a573bb8d",
"TargetJobState": 1
}
],
"Tasks": [
{
"Configuration": "Adaptive Streaming",
"MediaProcessorId": "nb:mpid:UUID:fa4df505-d219-42b0-bc17-a481c1441e56",
"TaskBody": "<?xml version=\"1.0\" encoding=\"utf-8\"?><taskBody><inputAsset>JobInputAsset(0)</inputAsset><outputAsset>JobOutputAsset(0)</outputAsset></taskBody>"
}
]
}
这个
JobNotificationSubscriptions
但有了它,我只得到了回应:
"error": {
"code": "",
"message": {
"lang": "en-US",
"value": "An error occurred while processing this request."
}
}
如何让我的通知与我的工作一起工作?