1

我正在尝试构建一个由斜杠命令触发的松弛对话框。对话框正确弹出,当用户提交数据时,slack 会命中我服务器上的端点。

从那一刻起,有两种可能的结果:

  1. 一切都很好,我向用户发布了确认信息
  2. 用户提交的数据没有通过我的应用程序的验证,我需要让用户知道。

让我们先关注#2:

我得到一个response_url似乎有效的 ( https:\/\/hooks.slack.com\/app\/MY-APP-ID\/433197747012\/kQANkbvc3lIViVyLSJKR695z)

为了测试,我想用我的一个字段来模拟验证错误,所以我在我的端点中这样做:

$errors = [
        'errors' => [
            [
                'name' => 'vendor_email',
                'error' => 'sorry, I do not like this dude'
            ]
        ]
    ];
// define the curl request
$ch = curl_init();
// $decoded->response_url does contain the correct slack URL...

curl_setopt($ch, CURLOPT_URL, $decoded->response_url);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    'Content-Type: application/json',
    'Content-Type: application/x-www-form-urlencoded'
]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);

// set the POST query parameters
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($errors));

// execute curl request
$response = curl_exec($ch);
error_log(" -- response_url response: " . json_encode($response). "\n", 3, './runtime.log');

// close
curl_close($ch);

我得到的回应response_url是这样的:

{\"ok\":false,\"error\":\"invalid_request_data\"}

我究竟做错了什么?

****** 编辑 ************

即使不走 CURL 路线,而只是这样做:

return json_encode($errors)

提交后只会关闭对话框,不会触发任何验证错误。

4

1 回答 1

1

respond_url不是用于回复提交(例如验证错误),而是用于将消息发送回频道中的用户。

用户完成对话后,您将收到来自 Slack 的请求。您需要直接响应该请求。如果一切正常,您可以使用空响应进行响应 - 或者使用错误列表进行验证。响应必须采用 JSON 格式并在 3 秒内发生。

要响应您需要做的就是在 JSON 中回显您的错误数组。还要确保将标头正确设置为 JSON,如下所示:

header('Content-Type: application/json');
echo json_encode($errors);

如果您没有错误,只需回显任何内容即可自动发送 HTTP 200 OK。

另请参阅有关如何正确响应提交的文档中的此处。

于 2018-09-11T20:54:13.767 回答