Questions tagged [chat]

Generic term for "Instant Messaging System". It can also represent a discussion that occurs in an Instant Messaging System.

In terms of computing, chat refers to methodologies and applications to enable to transmission and receipt of messages between end users, whether text or media (e.g voice, video), as well as the content of any such communication.

5837 questions
14
votes
2 answers

socket.io chat with private rooms

I started looking into node and socket.io. I already have created a simple chat application and I am amazed at how easy it was. Now, I would like to take a little bit further and provide a list of online users that have the ability to chat with each…
Thomas
  • 4,641
  • 13
  • 44
  • 67
14
votes
2 answers

What is the proper way to manage multiple chat rooms with socket.io?

What is the proper way to manage multiple chat rooms with socket.io? So on the server there would be something like: io.sockets.on('connection', function (socket) { socket.on('message', function (data) { socket.broadcast.emit('receive',…
Guy guy
  • 309
  • 1
  • 3
  • 10
14
votes
12 answers

Chat application AJAX polling

In the project I am currently working on, we have the need to develop a web chat application, not a very complex chat, just a way to connect two people to talk about a very specific topic, we don't need any kind of authentication for one of the two…
Francisco Soto
  • 10,277
  • 2
  • 37
  • 46
14
votes
3 answers

iOS - Chat application with push notification

My question is simple, is it a good idea to develop chat application using push notifications? Hence push notifications are not reliable and there is no guaranty either they would arrive or not. If it is not reliable, which technique should be used…
Adnan
  • 5,025
  • 5
  • 25
  • 44
13
votes
4 answers

How to determine the message status (read/unread) in chat?

How to determine the message status (read/unread). Chat is realized with the XMPP protocol.
enq
  • 131
  • 1
  • 3
13
votes
1 answer

How to implement a React infinite scroll component for a chat app like Facebook Messenger?

I know there are many questions about this topic (React infinite scroll), my question aims to go more in-depth in order to identify the best currently available solution to implement such a component. I am working on a chat app and I have created a…
tonix
  • 6,671
  • 13
  • 75
  • 136
13
votes
2 answers

How to get a message from Telegram groups by API?

I was looking for some way to listen and catch new messages provided by telegram groups. I have not found libraries or API in order to do this in Python. Someone having any suggestion?
RedVelvet
  • 1,683
  • 3
  • 15
  • 24
13
votes
2 answers

Public chatroom with radius using Firebase (Suggestions Requested)

I want to integrate a public chatroom within my app however I am clueless as how to create the backend. I use firebase for my app and the setup is simple between two users or a group of users. I create a private room based on a reference point in…
Bhavik P.
  • 905
  • 3
  • 10
  • 28
13
votes
9 answers

ionic 2 + angular 2 : auto scroll to bottom of list / page / chat

I'm trying to code a page with two segments "chat" and "content". I want that one "chat" segment the page auto-scroll to the bottom with no effect. The chat is a with several . item 1
sandrina-p
  • 3,794
  • 8
  • 32
  • 60
13
votes
4 answers

Is there a way to embed an iframe in an email with text that updates?

I want to embed an iframe inside an email that contains the 10 most recent chat messages. Is there a way to make this iframe dynamic so that it always shows the latest 10 chats regardless of when the email is opened? If the iframe is not the correct…
John
  • 5,835
  • 8
  • 28
  • 36
13
votes
7 answers

Add object to start of dictionary

I am making a group chatting app and I have images associated with the users, so whenever they say something, their image is displayed next to it. I wrote the server in python and the client will be an iOS app. I use a dictionary to store all of the…
Minebomber
  • 1,209
  • 2
  • 12
  • 35
13
votes
1 answer

How to add a searchbar to JSQMessagesViewController

In my chat application I am using JSQMessagesViewController for rendering the conversation. The application also has public messages that I want to search in. I am now trying to display them using JSQMessagesViewController. For this I want to hide…
Edwin Vermeer
  • 13,017
  • 2
  • 34
  • 58
13
votes
5 answers

Firebase Hosting on own server

I am looking for a solution for developing iOS and Android chat to replace our current (unreliable, maybe poorly written by previous devs) XMPP/OpenFire chat. I came across Firebase which looks good. However, I don't quite get the setup for it. Can…
SleepNot
  • 2,982
  • 10
  • 43
  • 72
13
votes
2 answers

Implementing one to one and group chat in android

I am developing an Android app in which I have to implement chat messaging. I would like one to one chat or a group chat. But I have no idea how to start. Please help me with this stuff. Any help will be appreciated.
user1025050
12
votes
2 answers

How to implement XMPP protocol in objective-C?

How to implement XMPP protocol in objective-C? I want to send & receive messages from Jabber server through XMPP. Thanks in advance.
Dilip
  • 266
  • 1
  • 3
  • 6