我正在使用DiscoveryV1
python 库尝试在我的 WDS 环境中创建一个新集合。我有以下代码:
from watson_developer_cloud import DiscoveryV1
discovery = DiscoveryV1(
username = "username goes here",
password = "password goes here",
version = "version goes here")
conf_id ='valid configuration_id'
env_id = 'valid environment_id'
new_col = discovery.create_collection(env_id, 'TestV2', configuration_id=conf_id)
上述块的最后一行抛出以下错误:
watson_developer_cloud.watson_developer_cloud_service.WatsonException: Error: Unsupported Media Type, Code: 415
完整的堆栈跟踪:
Traceback (most recent call last):
File "uploadCorpus.py", line 23, in <module>
new_col = discovery.create_collection(env_id, 'TestV2', configuration_id=conf_id)
File "/home/Vito.Colano/Apps/anaconda2/lib/python2.7/site-packages/watson_developer_cloud/discovery_v1.py", line 227, in create_collection
accept_json=True)
File "/home/Vito.Colano/Apps/anaconda2/lib/python2.7/site-packages/watson_developer_cloud/watson_developer_cloud_service.py", line 324, in request
raise WatsonException(error_message)
watson_developer_cloud.watson_developer_cloud_service.WatsonException:
Error: Unsupported Media Type, Code: 41