音调分析仪api无法连接

时间:2015-10-12 14:32:42

标签: ibm-watson tone-analyzer

我试图通过其API连接到Tone Analyzer。我已经在Bluemix上创建了凭据,如下所示:

ta_url = "https://gateway.watsonplatform.net/tone-analyzer-experimental/api/v2/profile"
username =  "xxxxxxxxxxxxxxxxxxxxxxxxx"
password = "yyyyyyyyyy"

我可以使用相同的方法连接到Personality Insight(凭据是单独创建的)。

您的帮助将不胜感激!

祝你好运, 肯

1 个答案:

答案 0 :(得分:0)

Tone AnalyzerPersonality 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"

请务必使用您的服务凭据替换USERNAMEPASSWORD

请参阅Tone Analyzer documentation以了解有关该服务的更多信息 请参阅API Explorer以了解有关API的更多信息。

更新:音调分析器现在是Beta;网址已得到纠正。