0

我试图通过其 API 连接到 Tone Analyzer。我在 Bluemix 上创建了如下凭证:

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

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

您的帮助将不胜感激!

最好的问候,肯

4

1 回答 1

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"

确保使用您的服务凭证替换USERNAME和。PASSWORD


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

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

于 2015-10-27T19:17:11.093 回答