Communication
Connect Slack
Send messages and manage channels.
Communication
Slack
Send messages and manage channels.
Sample request
// 1. Mint a session token for the end user
const session = await link.connect.session({
integrationKey: "slack",
userId: "u_42",
});
// 2. After the user completes OAuth, proxy a request
const res = await link.proxy("slack", "u_42", {
method: "GET",
endpoint: "/api/v1/me",
});