代码之家  ›  专栏  ›  技术社区  ›  robbpriestley

Azure Media Services如何设置作业通知

  •  1
  • robbpriestley  · 技术社区  · 7 年前

    在我之前的问题中 Azure Media Services Encoding Job Callback to URL 建议Azure Media Services“支持WebHooks的通知功能”可以在编码作业完成时回调到URL。我很难让它工作。

    采取的步骤:

    1. 创建并测试了一个Azure函数,该函数能够向我的任意回调URL发送POST请求。
    2. 使用REST API创建NotificationEndPoint并检索Id(类似于 nb:nepid:UUID:e9203dcb-b6a0-4b44-3cc6-69c4a573bb8d
    3. 现在尝试将通知添加到我的编码作业中。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."
            }
        }
    

    如何让我的通知与我的工作一起工作?

    1 回复  |  直到 7 年前
        1
  •  2
  •   robbpriestley    7 年前

    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/cc69a85f-74b0-4d52-8e69-629ff5007169/create-an-encoding-job-with-jobnotificationsubscriptions-by-using-rest-api-got-a-response-with-400?forum=MediaServices

    这里有三个明显的成功因素:

    1. 在请求头中,DataServiceVersion和MaxDataServiceVersion都需要设置为3.0。这对我来说已经是事实,不需要更改,但对于其他试图解决相同问题的人来说可能很重要。
    2. 这个 InputMediaAssets InputMediaAssets@odata.bind":["https://wamsos1clus001rest-hs.cloudapp.net/api/Assets('nb%3Acid%3AUUID%3Acee6b356-a0d0-4cfa-955b-e81cbebebb8e')"],
    3. 在请求头中,我需要从 Content-Type=application/json;odata=verbose Content-Type=application/json

    为什么当请求在没有 JobNotificationSubscriptions