予測 APIは、私がテストした 1 週間前には動作していましたが、今朝(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 リファレンスはこちらです。
そして、これは私が使用しているサンプルコードです:
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);
}
}
ここに誰か同じ問題がありましたか?