-
Notifications
You must be signed in to change notification settings - Fork 243
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
SlackTaskClient is getting method_deprecated
errors several API's
#272
Comments
@ramonsmits try now from the latest, it should be fixed. |
@ifonya105 Just tested Maybe the |
Tested is with var client = new SlackTaskClient(Token);
var channels = await client.GetDirectMessageListAsync(); |
Ok, so I got it to work by doing the following: var client = new SlackTaskClient(Token);
var users = await client.GetUserListAsync();
var user = users.members.Single(x => x.name.Equals(name));
var response = await client.JoinDirectMessageChannelAsync(user.id);
channelId = response.channel.id; |
SlackTaskClient is getting
method_deprecated
errors several API'sAs I want to use the Task based client I'm not sure how to resolve these issues.
The text was updated successfully, but these errors were encountered: