Channel Chat Hub/HubChatLive is an interactive chat platform connecting users worldwide. This application allows users to send text messages via POST requests, with the latest 15 messages appearing in the response.
- Real-Time Messaging: Send and receive messages in real-time.
- Privacy Notice: Keep chat private as there's no encryption. Avoid sending sensitive content.
- Admin Communication: Special room (
admin-ef1fedf5d3
) for messaging admins. Do not share messages from the admin room.
Send messages in the following format:
{
"nickname": "YourNickname",
"text": "Your Message"
}
If you need to change your nickname, send it via the nickname field.
Messages are received in an array, showing up to the 15 most recent messages. For example:
[
{
"nickname": "Anon",
"text": "Old message",
"date": "2023-11-13T10:09:40.162697"
},
// More messages here
]
Messages will be displayed in the view, with newer messages at the bottom.
You can send messages with specific instructions, like generating an image or highlighting a message. For example:
{
"chat": "test",
"nickname": "Bob",
"text": "the cat",
"instruction": "generate image: Black cat hiding in soup"
}
Use the instruction field for special message formats or actions.
Follow the standard installation and running instructions as outlined in the previous sections of this README.
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
This project is licensed under the MIT License - see the LICENSE.md file for details.