quickblox

QuickBlox :How to share image/video in peer to peer chat module?

元气小坏坏 提交于 2019-12-06 05:23:27
问题 I am trying to share image/video in chat module. I've referred Sample code for this but couldn't find any help. Alos I've referred http://quickblox.com/modules/chat/ it says Add live chat functions to your app by plugging in our full featured chat module . Fast, Firewall friendly, Robust & Secure. Does it means I have to purchase full featured chat module ? Please suggest me the right way. Thanks 回答1: Yes, QuickBlox Chat allows to share files, video/audio between 2 users. Right now iOS SDK

layer vs quickblox baas comparison

廉价感情. 提交于 2019-12-05 22:46:31
layer vs quickblox , which is better(easier to implement,performance features) for messages,voip, and video chat, and do I need to add parse.com with those messaging solutions for content storage. Abhishek Gupta Some of the differentiating points are: Quickblox supports video and audio calling, layer doesn't. Layer provides SDK for iOS, android and Javascript & unity sdk are in queue. Quickblox provides sdk for iOS, android and js. All the above mentioned are only for client. If you want to control something from your server then you have to use Rest APIs. Layer provides Rest and Websocket API

`Required session does not exist` error while using REST api of Quickblox

て烟熏妆下的殇ゞ 提交于 2019-12-05 21:43:39
I am using REST api of Quickblox. but everytime , i am getting response : {"errors": { "base": ["Required session does not exist"] }} And i am using below api : url : http://api.quickblox.com/users.json Data & header is : curl -X POST \ -H "Content-Type: application/json" \ -H "QuickBlox-REST-API-Version: 0.1.0" \ -H "QB-Token: cf5709d6013fdb7a6787fbeb8340afed8aec4c69" \ -d '{"user": {"login": "xyz", "password": "xyz@123", "email": "xyz@domain.com", "external_user_id": "68764641", "facebook_id": "87964654", "twitter_id": "132132", "full_name": "test 1234", "phone": "87654351", "website": "",

Quickblox linker error: operator delete(void*)\", referenced from

ⅰ亾dé卋堺 提交于 2019-12-05 19:44:50
I'm creating a simple chat app with Quickblox. So I added the project to XCode exactly like in this tutorial: http://quickblox.com/developers/IOS-how-to-connect-Quickblox-framework QBUsers class worked just fine, but when I used QBChat I started to get linker errors: Undefined symbols for architecture i386: "operator delete(void*)", referenced from: -[QBVideoChat initAudioCapture] in Quickblox(QBVideoChat.o) "operator new(unsigned long)", referenced from: -[QBVideoChat initAudioCapture] in Quickblox(QBVideoChat.o) "___gxx_personality_v0", referenced from: Dwarf Exception Unwind Info (__eh

- (void)chatDidReceiveMessage:(QBChatMessage *)message not working

≡放荡痞女 提交于 2019-12-05 18:51:55
I have integerated QuickBlox iOS sdk v2.5. I am sending messages to a particular and they are being sent to server but for receiving a message - (void)chatDidReceiveMessage:(QBChatMessage *)message is not getting called This is what I am doing to connect [[QBChat instance] addDelegate:self]; QBUser *chatUser=[QBUser new]; chatUser.ID=[[[NSUserDefaults standardUserDefaults] objectForKey:USERID] integerValue]; chatUser.password=[[NSUserDefaults standardUserDefaults] objectForKey:PASSWORD]; [[QBChat instance] connectWithUser:chatUser completion:nil]; For creating a chatDialog QBChatDialog

Error:(52, 0) Gradle DSL method not found: 'сompile()' in using Quickblox API

点点圈 提交于 2019-12-05 15:02:34
I tried to use Quickblox API in my program by adding online maven dependencies. I'm using Android Studio. When I tried to build my program, it shows the following error: Error:(52, 0) Gradle DSL method not found: `сompile()` Possible causes: The project 'Nanny Watch' may be using a version of Gradle that does not contain the method. Open Gradle wrapper file The build file may be missing a Gradle plugin. Apply Gradle plugin Here is the build.gradle(Project:NannyWatch2) file: // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript {

quickblox base Bad timestamp for 4.1.2

穿精又带淫゛_ 提交于 2019-12-05 10:47:13
I'm trying to start using Quickblox, since it provides great tools for backend. I have registered on website an got credentials for my app, however I fail to start simple program to test connection: public class MainActivity extends Activity{ @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); QBSettings.getInstance().fastConfigInit("3504", "NMuekBBXBg6PgST", "HaOj5bY4LgxUpPH"); QBAuth.createSession(new QBCallbackImpl() { @Override public void onComplete(Result result) { // result comes here // check if

QuickBlox Video Chat Quality

烈酒焚心 提交于 2019-12-04 22:36:56
We have this iOS project that uses QuickBlox Video Chat. Basing from the sample app they've given, we were able to implement it successfully. When we tested it, the quality looks a bit bad. Does anyone know how to up the quality of the video chat? Thanks. you can change the video quality by setting kQBVideoChatFrameQualityPreset in videoChatConfiguration, NSMutableDictionary *videoChatConfiguration = [[QBSettings videoChatConfiguration] mutableCopy]; [videoChatConfiguration setObject:@20 forKey:kQBVideoChatCallTimeout]; [videoChatConfiguration setObject:@10 forKey

Sign in Quickblox using twitter gives Bad Authentication Data error

时光总嘲笑我的痴心妄想 提交于 2019-12-04 17:23:47
i have successfully Signed in using facebook but when i tried twitter it says Bad Authentication request. I have orivided both Access token and Secret key. Heres code snippet QBASessionCreationRequest *extendedAuthRequest = [QBASessionCreationRequest request]; extendedAuthRequest.socialProvider = socialProvider; extendedAuthRequest.socialProviderAccessToken = @"ACCESS_TOKEN"; extendedAuthRequest.socialProviderAccessTokenSecret = @"ACCESS_TOKEN_SECRET"; [QBAuth createSessionWithExtendedRequest:extendedAuthRequest delegate:self]; Are you set API KEY, API SECRET and callback for your app? http:/

QBPrivateChatManager getting null

旧街凉风 提交于 2019-12-04 15:11:21
I am getting QBPrivateChatManager as null , I am using following code : QBChatService chatService = QBChatService.getIntance(); privateChatManager = chatService.getPrivateChatManager(); getting privateChatManager as null. Ba Tới Xì Cơ You must to create User session first QBAuth.createSession(new QBUser("garrysantos", "garrysantospass"), new QBEntityCallbackImpl<QBSession>() { @Override public void onSuccess(QBSession session, Bundle params) { // success } @Override public void onError(List<String> errors) { // errors } }); See more : http://quickblox.com/developers/Android_XMPP_Chat_Sample