ClaudeAI for Node.js
slack Conversation Library for ClaudeAI.
Usage
import Authenticator, { type ChatResponse } from 'claude-api'
let
token = 'xoxp-xxxxx',
bot = 'U0xxxx',
text = '讲个故事'
const authenticator = new Authenticator(token, bot)
const channel = await authenticator.newChannel('chat-7890')
let result: ChatResponse = await authenticator.sendMessage({
text, channel, onMessage: (originalMessage: ChatResponse) => {
}
})
console.log('==============1\n', result)
text = '接着讲,接下来进入修仙情节'
result = await authenticator.sendMessage({
text, channel,
conversationId: result.conversationId,
onMessage: (originalMessage: ChatResponse) => {
}
})
授权以及获取 user-token
网页登录后登录, 进入 api 配置页面[点我跳转](Claude - chat - Slack)。
〉》点击【Create an app】
〉》主页看见 Your Apps 并弹出窗口【Create an app】 〉》点击【From scratch】
〉》填写 app 名称以及选择工作空间(例:name: Bot, workspace: chat) 〉》点击【Create App】
〉》点击左侧边栏上的【OAuth & Permissions】 〉》下拉至【Scopes】卡片,在【User Token Scopes】项下添加权限,如下:
channels:history, channels:read, channels:write, groups:history, groups:read, groups:write,
chat:write, im:history, im:write, mpim:history, mpim:write
〉》回到顶部【OAuth Tokens for Your Workspace】栏,点击【Install to Workspace】,然后确认授权即可
至此,获得拥有一定权限的 user-token
获取 claude appid
Credits
Thank you to: