Reputation: 17
I build a Slack assistant following the documentation here: https://tools.slack.dev/bolt-python/concepts/assistant/
When I open the panel to interact with the assistant, on top of the panel appear a message with a blue background: BotAssistant is working with limited access. You can update access at any time.
I do not see where or what access I could update, neither in the Slack app nor in the app permission.
For information, below are the app permissions actually in place:
"oauth_config": {
"scopes": {
"user": [
"search:read",
"channels:history",
"groups:history",
"im:history",
"mpim:history"
],
"bot": [
"app_mentions:read",
"assistant:write",
"channels:history",
"channels:join",
"channels:read",
"chat:write",
"chat:write.customize",
"commands",
"files:read",
"groups:history",
"groups:read",
"im:history",
"im:read",
"im:write",
"incoming-webhook",
"links:read",
"metadata.message:read",
"mpim:history",
"mpim:read",
"mpim:write",
"reactions:write",
"users:read",
"users:read.email",
"channels:manage",
"groups:write"
]
}
},
Can you help me to solve this problem?
Upvotes: 0
Views: 36
Reputation: 16
I think there's a bug. I've been running an app on slack similar to this for over 6mo and never had this issue until mid day yesterday. I have 3 versions of my app using the same code and one of them is NOT an ai assistant in the slack settings. That one was not impacted by this banner. For my 2 ai assistant apps (again, same features - just a toggle in slack's app settings) the apps are not working at all. Slack is not sending any event data even though i have proper scopes.
Upvotes: 0