Block message from a Member as Another member in quickBlox WEB API - quickblox

I'm implementing quickBlox chat using WEBAPI. Is it possible to add members programmatically and create new group and member of the chat room that can block any member of chat room? Using webSDK only.

Not yet. Now WebSDK doesn't support a wrraper around XMPP API, so you should include additional XMPP JS library for that.
Strophe.js (http://strophe.im/strophejs/)
and its Strophe.muc plugin (https://github.com/QuickBlox/sample-chat-xmpp-web/blob/master/js/libs/strophe.muc.js).

Related

How to completely remove Chat Bot created by Chat API?

I created test Chat Bot two month ago using Chat API and service account and used it.
Then I disabled the bot and remove Chat API from the project. But I still can find this bot in the Chat by the name. It has status Disabled but exists.
Is it possible completely remove it from G Suite domain available bots?
Disabling the Chat API should remove the bot from Hangouts Chat. Do you still see it after refreshing Chat or deleting your cache?

Quickblox for android and web using PHP as backend

I was thinking of using the quickblox for my chat requirement.
We want to build a 1-1 chat between a user and admin. User will be logged in from the android and admin will be logged in from the web. We want the functionality for the user to chat with an admin person. Our backend code base is in PHP and both the android and web talks to the backend with rest APIs.
Some can please help me out on where should I start my development from. Can you share any sample code or tutorial to get me started with, it would be really helpful?
It may be solve like this
For PHP admin side
First you need to create the dialog for all the user
Then for selected user you will call the Retrieve_messages api for getting all the user
For sending the message you have to call Create_message
Ref : QuickBlox
For android they have their own SDK for sending and getting the message
Android SDK

Quickblox - Appcelerator Titanium integration - Chat

Is it possible to integrate QuickBlox chat in Appcelerator Titanium. Looks like we may use REST API to integrate other objects not Chat object.
Thanks.
Yes, for other objects instead of chat you can use CustomObjects REST API

How can I access the Google+ hangout chat?

I want to implement a speaker queue manager that works off of the chat - see GitHub repo Q Bot for more details - but are unable to find a way to listen to chat events (and then react to them). Any hints?
There's no way to access chat from the Hangouts API.
There is, however, an open feature request for this. If you star the issue you'll be notified when it's updated.
You might be able to work around this by making your own interface in a Hangout extension to control the inputs for this app, rather than overloading the chat feature.

agent chat history problen in smack api

i wrote a java program to connect with google talk using smack api
connection and sending receiving messages are working fine
then how can i get the chat history using smack api
there is one method AgentchatHistory in smack but how can i use it
I believe AgentChatHistory is to support Openfire's feature call fastpath. Don't think Google supports that. If you want chat history, you will have to implement it.