0

我的目标是能够使用斜杠命令打开对话框并将反馈处理到数据库中。我正在尝试打开对话框,但收到有关斜杠命令的错误,其中显示未找到“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);
?>

4

1 回答 1

1

要在 slack 中打开对话框,您可以使用此 api“ https://slack.com/api/views.open ”。使用 api,您需要发送仅 3 秒有效的触发器 ID。 您的网址将如下所示:https://slack.com/api/views.open?trigger_id= ” + “xxxx.xxxxxxxxx.xxxxxxxxxxxx” + “&view=您的数据”。使用此请求,您需要使用您的 post 请求发送令牌,例如:- (URL,"POST", { "token" ,"xoxb-xxxxxx-xxxxx-xxxxxxx"});

还需要在您的 slack 应用程序中添加 view.open API,以便使用以下步骤: 使用“Bot User OAuth Access Token”,在“OAuth and permissions Tab”中,格式为 xoxb-xxxxx-xxxxx-xxxx。然后添加范围“views:open”并重新安装您的应用程序。然后尝试打开视图对话框。

希望这会有所帮助。

于 2020-05-24T17:07:48.430 回答