このページは imi-enrichment-jsic の WebAPI の動作確認ページです。
変換 ボタンを押すとこのブラウザから実際に WebAPI を実行して結果を表示します
現在表示されている URL に POST
メソッドを使って任意のテキストを送信すると推薦結果の JSON が出力されます。
Content-Type: text/plain
を指定して POST
します
$ curl -X POST -H 'Content-Type: text/plain' -d 'インターネットサービスプロバイダー' __ENDPOINT__ [ { "value": ..., "score": 13 }, { "value": ..., "score": 10 }, ... ]
Content-Type: text/plain
を指定して POST
します
fetch("__ENDPOINT__", { method: "POST", headers: { "Content-Type": "text/plain" }, body: "インターネットサービスプロバイダー" }).then(function(response) { return response.ok ? response.json() : response.text(); }).then(function(result) { console.log(result); });