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
var slackClient = new SlackTaskClient(token);
var postResponse = await slackClient.PostMessageAsync("#general", "test");
var updateResponse = await slackClient.UpdateAsync(postResponse.ts, "#general", "test 2.0");
I just ran into this issue and was able to get it to work by setting as_user: true on the update method. This shows the message as edited though, which other integrations don't seem to do 🤷♂️
Here is my code
The response I get (as observed in Fiddler) is
I believe this requires a similar fix to #217
The text was updated successfully, but these errors were encountered: