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
Class Message is missing attachments[] field.
For example when calling method https://api.slack.com/methods/im.history using WebClient like this and there is message with attachments:
WebClient wc = new WebClient();
wc.QueryString.Add("channel", "CHANNEL");
wc.QueryString.Add("token", "YOUR_TOKEN");
string result = wc.DownloadString("https://slack.com/api/im.history");
var result = System.Text.RegularExpressions.Regex.Unescape(result);
you will recieve json with attachments[] field property.
But when using SlackClient there is no prop. like this on Message class...
Please add it,
Thank you very much.
The text was updated successfully, but these errors were encountered:
Class Message is missing attachments[] field.
For example when calling method https://api.slack.com/methods/im.history using WebClient like this and there is message with attachments:
you will recieve json with attachments[] field property.
But when using SlackClient there is no prop. like this on Message class...
Please add it,
Thank you very much.
The text was updated successfully, but these errors were encountered: