0

我使用 ASP.NET Core 2.1 构建与 Slack 的集成这是我的 json 格式的模态。

{
  "type": "modal",
  "callback_id": "send_sms",
  "title": {
    "type": "plain_text",
    "text": "Send SMS",
    "emoji": false
  },
  "submit": {
    "type": "plain_text",
    "text": "Submit"
  },
  "close": {
    "type": "plain_text",
    "text": "Cancel"
  },
  "blocks": [
    {
      "type": "divider"
    },
    {
      "type": "input",
      "block_id": "phone_number",
      "label": {
        "type": "plain_text",
        "text": "Enter phone number",
        "emoji": false
      },
      "element": {
        "type": "plain_text_input",
        "placeholder": {
          "type": "plain_text",
          "text": "Phone number",
          "emoji": false
        },
        "action_id": "action_phone_number"
      }
    },
    {
      "type": "input",
      "block_id": "message",
      "label": {
        "type": "plain_text",
        "text": "Enter message",
        "emoji": false
      },
      "element": {
        "placeholder": {
          "type": "plain_text",
          "text": "Message",
          "emoji": false
        },
        "action_id": "message",
        "type": "plain_text_input",
        "multiline": true
      }
    }
  ]
}

因此,当用户提交表单时,我的 .net 核心应用程序会收到一个 view_submission 事件,如果电话号码的格式无效,我想以错误响应此事件。Slack 文档说我应该用这样的 json 对象响应:

`{
  "response_action": "errors",
  "errors": {
    "phone_number": "Invalid phone number format"
  }
}`

在调试过程中,我发现我的应用程序实际上确实从文件中加载了 json,并使用包含此 json 的字符串进行响应。但是在我的模态 输入图像描述中仍然出现此错误

控制器方法返回 Task> 对象,但我不确定它是否正确所以我的问题是:有人知道我应该如何使用 .net 核心来响应这个松弛事件吗?据我了解,即使我的 .net 核心应用程序中有验证错误并且我想将错误对象返回给 slack,我也应该以状态 200 OK 进行响应

4

1 回答 1

1

Finnaly this question is resolved by returning

Content('json_string', "application/json");
于 2020-04-17T14:31:58.357 回答