0

Retrieve and Rank - Get Startedのチュートリアルに従っており、次のステップにいます。

次のコマンドを発行して、cranfield_data.json データを example_collection コレクションにアップロードします。{username}、{password}、{solr_cluster_id}、および {/path_to_file} を自分の情報に置き換えます。

$ curl -X POST -H "Content-Type: application/json" -u "{username}":"{password}" "https://gateway.watsonplatform.net/retrieve-and-rank/api/v1/solr_clusters/{solr_cluster_id}/solr/example_collection/update" --data-binary @{/path_to_file}/cranfield_data.json

正しいユーザー名とパスワード、正しい cluster_id と json へのパスを使用してリクエストをロビングしていますが、次のエラーが発生します。

$ curl -X POST -H "Content-Type: application/json" -u "username":"password" "https://gateway.watsonplatform.net/retrieve-and-rank/api/v1/solr_clusters/cluster_id/solr/example_collection/update" --data-binary @forum_data/parsed_answers.json

Error: WRRCSH006: Error forwarding request [/solr/example_collection/update] for Solr cluster [sc5b47c5e3_bab3_4aff_a818_f0d786d6dece].
4

2 に答える 2

0

JSON に不正な形式の文字が含まれていたことが判明しました。

于 2016-05-14T20:41:14.070 に答える