我的目标是能够使用斜杠命令打开对话框并将反馈处理到数据库中。我正在尝试打开对话框,但收到有关斜杠命令的错误,其中显示未找到“trigger_id”。
- 我的应用程序设置了 API 和正确的 OAuth。
- 我使用我的 php 页面 (domain.com/slash.php) 的 url 在我的应用程序中添加了一个斜杠命令
- 斜杠命令是使用下面的代码设置的。
当我从松弛运行它时,我得到了输出
'{"ok":false,"error":"invalid_arguments","response_metadata":{"messages":["[ERROR] missing required field: trigger_id"]}}'
我尝试了一些调试并将 trigger_id 输出到屏幕,发现 trigger_id 确实为空。我错过了什么才能通过这个?
我承认我是松弛领域的新手。我已遵循(我认为)来自 slack 网站的有关正确设置应用程序的文档。
我是否缺少我的松弛应用程序设置或我的代码中导致此错误消息的某些内容?
提前感谢您的宝贵时间!
<?
$command = $_POST['command'];
$text = $_POST['text'];
$token = $_POST['token'];
$cn = $_POST['channel_id'];
$user_id = $_POST['user_id'];
$triggerid = $_POST['trigger_id'];
// define the dialog for the user (from Slack documentation example)
$dialog = [
'callback_id' => 'validres-3100',
'title' => 'Test',
'submit_label' => 'Submit',
'elements' => [
[
'type' => 'text',
'label' => 'Test Field 1',
'name' => 'field_1'
],
[
'type' => 'text',
'label' => 'Test Field 2',
'name' => 'field_2'
]
]
];
// define POST query parameters
$query = [
'token' => '<my api auth code>',
'dialog' => json_encode($dialog),
'trigger_id' => $triggerid
];
// define the curl request
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://slack.com/api/dialog.open');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'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($query));
// execute curl request
$response = curl_exec($ch);
// close
curl_close($ch);
var_export($response);
?>