感想分析に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