TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Things I learned creating my own Messenger chatbot

195 pointsby kilianover 8 years ago

8 comments

donmatitoover 8 years ago
In general, people interested in bots should not put too much emphasis on the chat part of chatbots. Most of the value will come from the frictionless, social experience. Nothing to download, no app switching, and your friend are already there.<p>Media is hyping the AI part because it is catchy, but using mostly&#x2F;only quick replies and buttons gives a much better UX IMHO. So, fully agree with #4.<p>There are only a handful of cases where text actually reduces friction instead of increasing it. Entering a date, for example : &quot;in 1h&quot;, &quot;tomorrow morning&quot; or &quot;next friday&quot; is really faster than other input types.<p>For most other cases, Messenger bots just got access to webviews. Really under-utilized so far, I think.
评论 #13436386 未加载
TeMPOraLover 8 years ago
A hint for #1: don&#x27;t assume a &quot;like&quot; is a like.<p>The default emoji in a conversation can be changed by either side, on demand. So don&#x27;t be surprised if suddenly you start getting a scared cat, or a tomato, instead of a 369239263222822. Why would people change the default emoji when talking to a bot? <i>Why not?</i><p>Hint #2: default emojis can be sent in several sizes, depending on how long the user holds the &quot;send emoji&quot; button. From what I can tell, 369239263222822 is a <i>small</i> like. There are at least two other sizes. This is not some obscure feature, people use it all the time, so be prepared.<p>--<p>In general, it&#x27;s worth to pay attention to details of the platform one&#x27;s developing for ;).
评论 #13440125 未加载
评论 #13439941 未加载
edshiroover 8 years ago
I particularly liked this point: &quot;Add a natural delay between messages to keep your chatbot from feeling mechanical&quot; . While I know in the back of my mind that I am not chatting to a real human being, I would feel surprised and less engaged if I received instantaneous answers from the bot.<p>Having a delay therefore sounds like the right thing to do: you can also trigger the (...) in Messenger as your bot is preparing the answer.<p>I see chatbots being used from gaming to financial advising, not I am pessimistic on the AI side of it or the bot being able to chat to you as if it were a real human being. My gut feeling is that chatbots will become extremely specialised and may excel in a given domain.
评论 #13438372 未加载
DanHultonover 8 years ago
Oh wow, this is interesting timing. I&#x27;m actually writing a fantasy game for Slack using their bot interface, and a lot of the lessons described here are things I picked up as well while showing to friends.<p>Slack offered buttons shortly after I started work, so I switched from trying to interpret text to offering clear buttons instead, and yeah it makes a huge difference. I know I was into MUDs a whole lot in my youth, but folks today expect a more intuitive interface.<p>It&#x27;s nice to see I&#x27;m not the only one interested in bringing a little levity to the world of chat bots!
donatjover 8 years ago
I don&#x27;t get the draw. None of the chat bots I&#x27;ve used seem that much more useful than an AIM or IRC bot of yesteryear. I&#x27;d rather click a button for an action than have to type something out. Seems like a gimmick to me.
评论 #13438406 未加载
评论 #13438516 未加载
gcrover 8 years ago
This is awesome!<p>One improvement: it&#x27;s standard practice in text adventures to have a uniform set of commands and shortcuts. For example, &#x27;i&#x27; is a common shortcut for &#x27;inventory&#x27; but your bot doesn&#x27;t know what I mean. Similarly, &#x27;x&#x27; is short for &#x27;eXamine&#x27;, and &#x27;n&#x27;, &#x27;w&#x27;, &#x27;s&#x27;, &#x27;e&#x27; are the compass directions.
Karrot_Kreamover 8 years ago
A lot of the same points apply with Telegram bots, though I suspect the Telegram user ecosystem is a lot less ... refined ... than the average FB Messenger ecosystem.
评论 #13435031 未加载
akjainajover 8 years ago
&gt;1. People send a like&#x2F;sticker as a conversation starter<p>I do that! When you open a conversation with a bot sometimes you don&#x27;t know what the bot expects you to do to start a conversation, so instead of writing gibberish and expect a help text, I tap &quot;like&quot; because it&#x27;s only one tap.