在microsoft azure中使用PowerApps运行Application时出错

问题描述 投票:1回答:1

我正在尝试使用Microsoft azure认知服务在powerapps上运行应用程序。这是一个情感分析应用程序,其中的情感分析得分在0到1之间,其中1为正,0为负,基于我们输入的句子。但是我尝试并执行了多少我无法处理此错误:

TextAnalytics.DetectLanguage失败:

{
  "code": "BadRequest",
  "message": "Invalid request",
  "innerError": {
    "code": "InvalidRequestQueryString",
    "message": "Request contains a query string. Request content should be placed in the request body, not in the url as a query string."
  }
}

如果有人对此错误有任何想法并且知道如何处理它。请帮我执行此代码。

azure powerapps text-analytics-api
1个回答
0
投票

从错误中,听起来您的请求格式不正确。该服务正在寻找下面格式的POST请求,听起来就像您正在发送参数化的URL。

根据to these docs,请求应采取以下形式:

{
  "documents": [
    {
      "language": "en",
      "id": "1",
      "text": "Hello world. This is some input text that I love."
    },
    {
      "language": "fr",
      "id": "2",
      "text": "Bonjour tout le monde"
    },
    {
      "language": "es",
      "id": "3",
      "text": "La carretera estaba atascada. Había mucho tráfico el día de ayer."
    }
  ]
}

您的请求如何比较?

© www.soinside.com 2019 - 2024. All rights reserved.