我正在嘗試使用Watson API進行情感分析。代碼很簡單。 但爲什麼我一直得到這個錯誤?????爲什麼我一直得到415 WatsonException:錯誤:Python中不支持的媒體類型?
WatsonException: Error: unsupported media type, Code: 415
沒有關於API文檔中的這個錯誤。
from watson_developer_cloud import AlchemyLanguageV1
alchemy_language = AlchemyLanguageV1(url="https://gateway.watsonplatform.net/natural-language-understanding/api",
username="xxx",
password="xxx")
print(json.dumps(alchemy_language.sentiment(text="hehe")))
當你構建AlchemyLanguageV1對象或調用sentiment()方法時,你會得到錯誤嗎? – mekkanizer