You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I get the code for a slack channel by copying a link to it and grabbing only the last part of the link, and then passing that code to the example, I don't get the error about it not being able to find a channel like I do if I pass anything else. Instead, I get an error about how the Slack API doesn't like the response that this crate is forming for it.
Is there any way to see the JSON that's generated? I turned on logging all the way down to trace, and I got a ton of logs from tokio in particular, but not much else.
The text was updated successfully, but these errors were encountered:
Thanks for the report. It seems that there are some message types which are unhandled. The original design doesn't handled any types other than what the library knows about so it's an error.
Slack don't version their API so new message types can just appear and cause issues for this very strict API. I feel like it needs an unknowns which just keeps the message blob but doesn't die. It should also handle any new types as they appear and this looks like a new one.
If I get the code for a slack channel by copying a link to it and grabbing only the last part of the link, and then passing that code to the example, I don't get the error about it not being able to find a channel like I do if I pass anything else. Instead, I get an error about how the Slack API doesn't like the response that this crate is forming for it.
Is there any way to see the JSON that's generated? I turned on logging all the way down to trace, and I got a ton of logs from tokio in particular, but not much else.
The text was updated successfully, but these errors were encountered: