我试图通过其API连接到Tone Analyzer。我已经在Bluemix上创建了凭据,如下所示:
ta_url = "https://gateway.watsonplatform.net/tone-analyzer-experimental/api/v2/profile"
username = "xxxxxxxxxxxxxxxxxxxxxxxxx"
password = "yyyyyyyyyy"
我可以使用相同的方法连接到Personality Insight(凭据是单独创建的)。
您的帮助将不胜感激!
祝你好运, 肯
答案 0 :(得分:0)
Tone Analyzer和Personality Insights是两种不同的服务 查看您尝试使用的网址:
https://gateway.watsonplatform.net/tone-analyzer-experimental/api/v2/profile
我猜您正在尝试使用/tone
调用来分析"音调"一段文字。
正确的网址应为:
https://gateway.watsonplatform.net/tone-analyzer-beta/api/v3/tone
curl -X POST \
-u USERNAME:PASSWORD \
-H "Content-Type: application/json" \
-d 'This is an important email. You should be working on X and have it ready by Friday' \
"https://gateway.watsonplatform.net/tone-analyzer-experimental/api/v3/tone?version=2016-02-11"
请务必使用您的服务凭据替换USERNAME
和PASSWORD
。
请参阅Tone Analyzer documentation以了解有关该服务的更多信息 请参阅API Explorer以了解有关API的更多信息。
更新:音调分析器现在是Beta;网址已得到纠正。