我正在尝试构建一个由斜杠命令触发的松弛对话框。对话框正确弹出,当用户提交数据时,slack 会命中我服务器上的端点。
从那一刻起,有两种可能的结果:
- 一切都很好,我向用户发布了确认信息
- 用户提交的数据没有通过我的应用程序的验证,我需要让用户知道。
让我们先关注#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)
提交后只会关闭对话框,不会触发任何验证错误。