-
Notifications
You must be signed in to change notification settings - Fork 394
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Message event payloads missing team_id
in enterprise on mobile slack clients
#2062
Comments
Hi @gs-ppatil - We've gotten reports of a similar vein and I've escalated previous issues internally, and at the moment, the issue seems related to mobile client. I hate to bounce you around, but since root cause of this behavior isn't related to I am happy to keep this open for now until you see a resolution your end! |
Hi @srajiang |
Hello @gs-ppatil are you still seeing the same issue with the mobile client? A BE fix has been deployed. |
Hi @srajiang, yes we're still facing the issue. |
Whoops @gs-ppatil - I apologize I realized I shared the wrong link, here's the link to the help form. I'm going to investigate a bit further. I thought perhaps it was related to another separate mobile client issue. |
@gs-ppatil - Alright just so I have the details correct:
Questions for you:
Your questions
At this point in time, I don't see a reason why you'd need to upgrade the bolt-js SDK, but this does seems like an issue server-side, possibly with the mobile client. I do recommend that you fill out that help form in addition to responding this thread with the details I've asked for above instead of responding to this thread. The customer experience team there is REALLY good at reproducing issues, and escalating to the right teams. They'll also be able to connect this issue you're having with any other reports. I'll keep this issue open for others in the community who might also be experiencing this. as well. |
team_id
in enterprise on mobile slack clients
Hi @srajiang
|
Thanks @gs-ppatil - Since the behavior seems related to the mobile Slack client, I'd recommend filling out the help form with the issue from here. |
Thanks, @srajiang for the update. I'll reach out via the above mentioned form |
Having the same issue |
facing the same issue |
If you're being affected by this issue, please email [email protected] and let them know you are upvoting the bug to be addressed. Sorry, on the SDK side there is not much we can do. |
For others running into this issue
-From Slack Support |
This also seems to prevent the |
When I type anything in my workspace app from mobile Slack the event that I get the team_id is missing from the event payload but when I type from web/desktop Slack I receive the team_id in the event payload. It used to work on mobile as well 2-3 months back but I don't know what happened suddenly it stopped working.
Can anyone please help as it's a blocker for me?
Reproducible in:
The Slack SDK version:
Node version: 14.21.3
Steps to reproduce:
Expected result:
We should receive the team_id on the event triggered from the mobile
{ "client_msg_id": "6c564b51-3312-4b83-93cc-7b14e7896bad", "type": "message", "text": "hi", "user": "<user_id>", "ts": "1707921031.568219", "blocks": [ { "type": "rich_text", "block_id": "a8bcU", "elements": [ { "type": "rich_text_section", "elements": [ { "type": "text", "text": "hi" } ] } ] } ], "team": "<team_id>", "user_team": "<user_id>", "source_team": "<team_id>", "user_profile": { "avatar_hash": "ba68d4f1c35f", "image_72": "https://avatars.slack-edge.com/2022-12-06/4469061237205_ba68d4f1c35f2da9553f_72.jpg", "first_name": "<firstName>", "real_name": <real_name>", "display_name": "<name>", "team": "<team_id>", "name": "<name>", "is_restricted": false, "is_ultra_restricted": false }, "channel": "<channelId>", "event_ts": "<event_id>", "channel_type": "im" }
Actual result:
the event from mobile slack
{ "client_msg_id": "0637d92d-1484-4a3e-a0c5-3967ad0a27b5", "type": "message", "text": "Hii", "user": "<user_id>", "blocks": [ { "type": "rich_text", "block_id": "NsxuO", "elements": [ { "type": "rich_text_section", "elements": [ { "type": "text", "text": "Hii" } ] } ] } ], "channel": "<channelId>", "event_ts": "<event_id>", "channel_type": "im" }
Questions:
The text was updated successfully, but these errors were encountered: