quickblox

How to use setCustomVideoChatCaptureSession for video chat?

北城余情 提交于 2020-02-06 23:52:27
问题 I need to apply video or auido filter for QuickBlox video chat. Anyone has a working sample code for this? How to use setCustomVideoChatCaptureSession and processVideoChatCaptureVideoSample for this purpose? 回答1: you can use own AVCaptureSession object in your application and forward all video packets to SDK. So SDK will just send packet without any processing. This is one way. - (void)setup{ // Create video Chat QBVideoChat *videoChat = [[QBChat instance] createAndRegisterVideoChatInstance];

How to use setCustomVideoChatCaptureSession for video chat?

左心房为你撑大大i 提交于 2020-02-06 23:52:09
问题 I need to apply video or auido filter for QuickBlox video chat. Anyone has a working sample code for this? How to use setCustomVideoChatCaptureSession and processVideoChatCaptureVideoSample for this purpose? 回答1: you can use own AVCaptureSession object in your application and forward all video packets to SDK. So SDK will just send packet without any processing. This is one way. - (void)setup{ // Create video Chat QBVideoChat *videoChat = [[QBChat instance] createAndRegisterVideoChatInstance];

quickblox for web - create 1 to 1 chat

橙三吉。 提交于 2020-01-21 09:48:29
问题 I am trying to create 1 to 1 chat from a web client. I downloaded the SDK and the group chat example. There seem to be really good examples for all platforms except the web. (for example: http://quickblox.com/developers/Android_XMPP_Chat_Sample) Can anyone provide code/example/directions? Am i missing something or is the documentation for the web is really lacking? Thanks 回答1: The WebSDK is enough new. And we work on its documentation. But,here, I will show you some code snippets how you can

quickblox for web - create 1 to 1 chat

浪子不回头ぞ 提交于 2020-01-21 09:48:04
问题 I am trying to create 1 to 1 chat from a web client. I downloaded the SDK and the group chat example. There seem to be really good examples for all platforms except the web. (for example: http://quickblox.com/developers/Android_XMPP_Chat_Sample) Can anyone provide code/example/directions? Am i missing something or is the documentation for the web is really lacking? Thanks 回答1: The WebSDK is enough new. And we work on its documentation. But,here, I will show you some code snippets how you can

Integrating real-time messaging in android app

旧街凉风 提交于 2020-01-17 07:53:22
问题 I have been searching for a while as to what could be the best option to integrate real-time messaging in my app. I have read about a number of available chat APIs like Sinch, Applozic, Quickblox, SendBird, etc. What I am confused about is that since I am using Firebase Auth for user authentication, can I use these available API along with Firebase Auth??? I know I can even use Firebase to create IM feature but I would prefer to use third party IM APIs as it will save time. Note: I am using

Receive push notifications in two different apps

£可爱£侵袭症+ 提交于 2020-01-17 05:41:27
问题 We are developing a coaching app service. It uses two different apps (in the store): one for coaches and one for customers. We want to be able to use push notifications on both apps but the quickblox panel only allows to upload one certificate. How can we go about using these two apps at the same time with quickblox? Is it maybe possible for two quickblox apps to talk to each other (each one with its own apns certificate) and if so, how? Thanks in advance 回答1: This is only possible on

Receive push notifications in two different apps

非 Y 不嫁゛ 提交于 2020-01-17 05:41:08
问题 We are developing a coaching app service. It uses two different apps (in the store): one for coaches and one for customers. We want to be able to use push notifications on both apps but the quickblox panel only allows to upload one certificate. How can we go about using these two apps at the same time with quickblox? Is it maybe possible for two quickblox apps to talk to each other (each one with its own apns certificate) and if so, how? Thanks in advance 回答1: This is only possible on

Get all the Quickblox groups list from server

微笑、不失礼 提交于 2020-01-14 13:38:46
问题 I am using quickblox api 2.5.1 in android for chat, I want to get all the quickblox groups list which is available in quickblox server. Currently i am getting the list of groups which is created by me or which i am the member of that group. 回答1: It's not possible to get ALL group chats in your application because of permissions model. Each user can request a list of chats he is in occupants list. There is also public group chats type - these chats are available for every user in your app. How