Inumedia / SlackAPI

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

how to use slack api (conversationslist) #264

Closed wooseong85 closed 3 years ago

wooseong85 commented 3 years ago

Hello I need how to use slack api more example.. I try test conversations list in C# slack api .

ex) in python api result list value = {'ok': True, 'channels': [{'id': '123123123'}

but c# slack api result not found. maybe test method wrong..

const string TOKEN = "my token"; var response1 = await slackClient.GetConversationsListAsync();

textBox1.Text = response1.ToString(); ==> SlackAPI.RPCMessages.ConversationsListResponse

how to get conveersations list result value like python?

thank you for your help..

Inumedia commented 3 years ago

I'm guessing you got this figured out?

wooseong85 commented 3 years ago

I haven't solved it.

If you show me sample code?