Ram

Results 118 comments of Ram

Hi @mmartinadanx, this is an interesting problem. Is there some kind of load balancer in front of all the bot instances? Also, do keep in mind that, in a typical...

Hey, now that I am thinking again, I realized that each bot instance will first make a call to `https://slack.com/api/rtm.connect?token={token}` with the token and each of them will get a...

Sorry, I use just one instance of JBot at this time. My load isn't big enough to require more than one instance. Ergo, I thought this is an interesting problem...

A couple of things. If you're using port `8080` then you have to specify the port as the default port for http is `80`. Also, if you're using https then...

Yes, it does. You can simply call `reply()` method with type `me.ramswaroop.jbot.core.common.EventType#USER_TYPING` like: ``` Message m = new Message(); m.setType(EventType.USER_TYPING.name().toLowerCase()); reply(session, event, m); ```

Hi @davidkarlsen, thanks a lot for contributing. Before reviewing/merging I would like to understand a bit more about encoding in Slack. From the slack docs, it says: ``` 3 Characters...

So, Slack at first asks to convert `

@davidkarlsen what I am trying to say is that we can make the encrypt function intelligent enough to encrypt just `` signs but when it's in the form of control...

hey @dwursteisen, I got what your method is doing, however, I did not completely understand how one would pass the user mentions (the user ids) to exclude to this method?

@dwursteisen yes, this would only work for this case where you have the receiver id and pass it to your reply method. But what if a message has multiple mentions?...