程序化LUIS预测API返回400错误

时间:2016-12-02 06:36:12

标签: c# microsoft-cognitive luis

预测API 在我测试的一周前工作,但今天早上突然停止工作(2016年12月2日),出现以下错误:

{
  "error": {
    "code": "BadArgument",
    "message": "Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index"
  }
}

此来电的API参考是here

这是我正在使用的示例代码:

static void Main()
{
    MakeRequest();
}

static async void MakeRequest()
{
    var client = new HttpClient();
    var queryString = HttpUtility.ParseQueryString(string.Empty);
    client.DefaultRequestHeaders.Add("Ocp-Apim-Subscription-Key", "*****");
    var uri = "https://api.projectoxford.ai/luis/v1.0/prog/apps/******/predict?" + queryString;
    HttpResponseMessage response;
    byte[] byteData = Encoding.UTF8.GetBytes("test.");
    using (var content = new ByteArrayContent(byteData))
    {
        response = await client.PostAsync(uri, content);
    }
}

这里有没有人有同样的问题?

2 个答案:

答案 0 :(得分:1)

我刚尝试使用API​​并且它正在为我工​​作。如果我使用" test发出请求。"如您的示例代码中所示,我收到以下错误:

{
  "error": {
    "code": "BadArgument",
    "message": "Value cannot be null. Parameter name: Array of utterances cannot be null"
  }
}

但是,当我将其更改为json数组时,如:

byte[] byteData = Encoding.UTF8.GetBytes("[ 'test.' ]");

它工作正常,我按预期得到了预测

我建议你更新那行代码,看看会发生什么。

答案 1 :(得分:0)

我不确定问题是什么,但我刚刚删除了应用并重新创建并且问题消失了。

希望它可以帮助路过的人。