-
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
It became impossible to connect to slack around 2022/9/27 #307
Comments
See #304 There's nothing I can do to help you at the moment. |
i understand. |
Could you clarify? Are you saying when not using the async methods, the real time messaging works? |
` ` After rewriting as above, the message was able to be sent.
fileupload is similar. |
It became impossible to connect to slack around 2022/9/27or28
I was able to send messages until the day before with the following source code, but I can no longer connect.
var client = new SlackSocketClient(BotToken); ManualResetEventSlim clientReady = new ManualResetEventSlim(false); client.Connect((connected) => { client.PostMessage((responce) => { }, ChannelId, options.Text, BotName, null, false, null, null, null, null, MessageIconEmoji); clientReady.Set(); }); if(clientReady.Wait(60 * 1000) == false) { Console.Error.WriteLine("// ERROR : Send Slack is fault."); }
However, since the message can be sent using curl, the token by bots should not be wrong.
curl -d "token=(tokenID)" -d "text=hoge." -d "channel=(channelID)" -X POST https://(myWorkspace)/api/chat.postMessage
please help me please.
The text was updated successfully, but these errors were encountered: