0

我正在尝试使用 POSTMAN 发布到新的 IBM Watson 工作服务,但只得到一个接一个错误。

该文档没有清楚地解释消息的正文方案(或者是这样吗?):

https://workspace.ibm.com/developer/docs#genericannotation

所以我在猜测: POST to

https://api.watsonwork.ibm.com/v1/spaces/{spaceId}/messages

带标题:

Content-Type:application/json
Authorization:Basic 123456789
spaceId: MySpaceID
body:{"input": {"text": "Hello"}}

正文成功发布该消息的正确方案是什么?

我总是收到以下错误:

{
  "timestamp": "2016-10-27T12:53:07.134+0000",
  "status": 403,
  "error": "Forbidden",
  "message": "No message available",
  "path": "/teams/{spaceId}/messages"
}
4

1 回答 1

0

我在 GitHub 上创建了一个脚本,您可以在PostMessageOnWatsonWorkspace.py文件中了解更多详细信息

我把部分代码放在下面

appname = 'PostMessageOnWatsonWorkspace'

text = """
Visit [IBM site](http://www.ibm.com), and leave a *message*.

Have _fun_!!!

Code Line:
`code`

Code Block:
```
code block
```
Bye
"""

目前要格式化的只有BoldItalic、 Code 和 links。

这是 Post 数据的示例。

data = {
  'type': 'appMessage',
  'version': 1.0,
  'annotations': [{
    'type': 'generic',
    'version': 1.0,
    'color': '#4FC3F7',
    'title': appname + ' --> sendRichMessage at ' + str(datetime.datetime.now()),
    'text': text,
    'actor': {
      'name': 'Enio Basso',
      'avatar': '',
      'url': 'https://ebasso.net'
    }
  }]
}

您可以在文档中找到其他详细信息。

于 2017-03-24T15:15:11.490 回答