Question - how to send the "typing.." message?
See original GitHub issueI tried:
cient.emit('userTyping', userID, channel);
and:
channel.startedTyping(userID)
both didn’t work. Is there an example somewhere I can use?
Issue Analytics
- State:
- Created 8 years ago
- Comments:16 (3 by maintainers)
Top Results From Across the Web
Using Typing.com — Support and Knowledge Base
Check out our knowledge base to find answers to all your questions about setting up and using Typing.com. If you still need help,...
Read more >Turn on chat features in Messages - Google Support
On your device, open Messages . Tap More More and then Settings. Tap Chat features. Tap Send read receipts. To find out when...
Read more >Why do I get a Snapchat notification saying someone is typing ...
The typing notification is sent to you when the other person types on the keyboard for a message that will be sent to...
Read more >If Someone Is Typing, Then Stops … Can I Ask Why? - WIRED
Silence can express volumes, and in our age of endless chatter, the refusal to speak sends a powerful message. The aborted text is...
Read more >how to send typing alert and message to users in a particular ...
To send the message to a specific room, you will have to create and join a room with roomId. Below is a basic...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
To answer the question about sending a message to indicate the bot is typing, use
rtm.sendTyping
:However, given that
rtm._send
didn’t work, you likely are running into an issue with your channel ID not being correct or the RTM client not being connected yet.Although this isn’t the current case, if you wanted to send an unsupported message type through the RTM client, I’d suggest using
rtm.send
and notrtm._send
asrtm.send
has some helpful error checks (and could have more stuff in the future).I answered how to do it earlier:
rtm.sendTyping
.As noted in the botkit issue that references this issue, this only works with the RTM API currently. Why, I can’t tell you, and it doesn’t revolve around an issue with this repository.
If you’d like to question it then your best bet may be contacting Slack support and hoping to get to one of the super-cool Slack Engineers. They might already know about this, however.