Multiple attachment with single callback_id: slack interactive component
问题 Is it possible to have multiple menu attachment and allow users to select each menu before sending back the collated response? return Promise.resolve({ text: `Rate each game`, attachments: [ ...games.map(game => ({ color: "#5A352D", title: game, callback_id: "game:done", actions: [ { name: "done", text: "Select a score", type: "select", value: "game:done", options: [ { text: 1, value: 1 }, { text: 2, value: 2 } ] } ] })) ] }); This images shows how it renders But, I need to call the callback