问题描述
我开发了一个功能应用程序并通过Azure APIM发布了相同的功能。我试图从数据工厂Web活动中调用API(APIM),该活动因以下内容而失败。
I have developed an Function app and published the same via Azure APIM. I am trying to call the API(APIM) from Data factory Web Activity, which fails with the below.
{
{
    " errorCode":" 2108",$
" message":"调用端点时出错。回复状态代码:",&b $ b "failureType":" UserError
}
"errorCode": "2108",
"message": "Error calling the endpoint. Response status code: ",
"failureType": "UserError
}
但是,当我在WebActivity中直接使用Azure功能URL +功能键时,这可以正常工作。
所以我希望能够使用Web Activity从Azure Data Factory调用组织内部的REST端点。感谢任何方向。
However when I use the Azure function URL + Function key directly in WebActivity this works fine.
So I want to be able to call a REST endpoint internal to my organization from Azure Data Factory using Web Activity. Appreciate any directions on this.
推荐答案
使用WEB活动时,不能在字符串中使用任何空格
When using a WEB activity you can NOT use any space in your string
这篇关于Azure Datafactory Web活动的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!