Inumedia / SlackAPI

.NET Implementation of the Slack team communication platform API.
MIT License
452 stars 243 forks source link

[Bug] SlackTaskClient.GetChannelListAsync() returns unknown_method #305

Closed sommmen closed 2 years ago

sommmen commented 2 years ago

Hiya,

Just trying out this library, i'm getting a unknown_method error message.

image

sommmen commented 2 years ago

All apis seem to work except GetChannelList...

        var userListResponse = await _slackClient.GetUserListAsync();

        userListResponse.AssertOk();

        var conversationsListResponse = await _slackClient.GetConversationsListAsync();

        conversationsListResponse.AssertOk();

        var channelListResponse = await _slackClient.GetChannelListAsync();

        channelListResponse.AssertOk();
sommmen commented 2 years ago

Ill close this issue. Seems like i needed the conversations api anyways and there are more pressing issues on the backlog.