We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, Gab chat is based on an initial HTML page and a WebSocket connection for getting new posts to the currently viewed chat.
It really should be based off of an API, like the rest of Mastodon.
GET chat/:id should return a list of ChatMessage instances (JSON), controlled by the standard max_id, min_id, since_id, and limit parameters.
GET chat/:id
ChatMessage
max_id
min_id
since_id
limit
Fill this in more once we have source code.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, Gab chat is based on an initial HTML page and a WebSocket connection for getting new posts to the currently viewed chat.
It really should be based off of an API, like the rest of Mastodon.
GET chat/:id
should return a list ofChatMessage
instances (JSON), controlled by the standardmax_id
,min_id
,since_id
, andlimit
parameters.Fill this in more once we have source code.
The text was updated successfully, but these errors were encountered: