Azure数据工厂管道中的函数调试内部服务器错误

问题描述

我完全按照Microsoft网站上的ADF Azure函数教程操作,当我调试我的Azure函数时,我在调试后得到

{
    "errorCode": "3608",
    "message": "Call to provided Azure function '' failed with status-'InternalServerError' and message - 'Invoking Azure function failed with HttpStatusCode - InternalServerError.'.",
    "failureType": "UserError",
    "target": "azuretestFunction",
    "details": []
}

通常,当"函数名"错误时,您会得到"找不到",但如果函数名正确,我会得到"内部服务器错误"。

在邮递员的Azure功能上表现出色。

有什么想法吗?


解决方案

已解决,这是我的MyStart-->由于缺少正文参数而导致内部服务器错误。因此,内部服务器错误可能意味着您自己的代码出了问题。

相关文章