Questions tagged [quickblox]

QuickBlox is a proprietary set of client-server solutions that allows you to build more powerful, engaging and secure mobile apps. QuickBlox runs from your own Amazon instances. You own the servers and can access the source codes of the running system.

QuickBlox is a proprietary web backend that allows you to add communication and data service features to mobile apps.

It provides a couple of modules such as "Location", "Users", "Ratings", "Chat", "Content", "Messages" and "Custom Objects".

1551 questions
6
votes
2 answers

How to block a user in QuickBlox?

I am creating a chat based Application on QuickBlox Framework, I want to have a block functionality in the App. I read out some of documents like XMPP and QuickBlox. But did not got any help Out of that. There is some logic of maintaining…
haresh
  • 486
  • 3
  • 18
6
votes
1 answer

Quickblox pricing confusion based on plans

Want to build demo app in android with p2p video chat; after looking at quickblox plan pricing I realized it is not explained well at all. My question is if I wanted to have 1:1 live video chatting on my app, the free tier would only allow 20…
user2873003
  • 357
  • 4
  • 21
6
votes
1 answer

Quickblox: How to make paged request of Custom Objects

I have a custom object (QBCustomObjects) for my application which has more than 100 entries. In my application, I would like to retrieve all of them, but haven't figured out how to do that using Quickblox iOS SDK (using version with latest git…
Matti Vilola
  • 185
  • 7
6
votes
1 answer

How to disable log statements in QuickBlox?

Quickblox often logs stuff like: Performing async request: RestRequest: ------ POST http://api.quickblox.com/session.xml headers:{ "QB-SDK" = "iOS 1.5.2"; "QuickBlox-REST-API-Version" = "0.1.1"; } But sometimes I want to disable QB logs to…
Sergey
  • 47,222
  • 25
  • 87
  • 129
6
votes
2 answers

Audio/Video conferencing for iOS, Android & Web Platform

I am working on application where I need to integrate text & video chat and video conferencing feature. I found that you guys provides solutions for that and I am very much interested in using/integrating your platform for my application. I have…
Umang9
  • 117
  • 1
  • 9
6
votes
1 answer

QuickBlox Token is required error

I have been using the code examples from the quickblox website however i am getting the following error: signIn error: Token is required My code: QBSettings.getInstance().fastConfigInit(APP_ID, AUTH_KEY, AUTH_SEC); QBAuth.createSession("test",…
Santiago
  • 982
  • 3
  • 14
  • 30
5
votes
1 answer

Quickblox - Flutter JNI was detached from native C++

I am using Quickblox for my chats in my Flutter app. Once a connection is made, the chat works fine. When the app is send to the background, I set the connection to closed as advised by Quickblox documentation. But when I reopen my app, it does not…
Abdullah Riaz
  • 536
  • 5
  • 19
5
votes
1 answer

How to send video file as attachment in quickblox iOS?

Quickblox iOS Video Attachments I have integrated Quickblox iOS (Objc) Library into my app for chat module. Images as an attachment under QBRequest TUploadFile method is possible. But I can't find any working solution to make a video attachment file…
Akash Thakkar
  • 941
  • 1
  • 6
  • 16
5
votes
1 answer

Base Forbidden. Need user

I am using QuickBlox SDK to load chat history. Like this: Create Session after successfully creating section Initialize chatService Login chat Service After successful Login. Bundle bundle = new Bundle(); QBRequestGetBuilder…
Apurva Kolapkar
  • 1,270
  • 2
  • 16
  • 32
5
votes
2 answers

Signup/Register user using quickblox?

I am using arabic text to signup on quickblox http://api.quickblox.com/users But i am receiving this error in iOS XCode "errors":{"login":["should contain alphanumeric and punctuation characters only"],"password":["should contain alphanumeric and…
Suffian Shaukat
  • 265
  • 1
  • 2
  • 7
5
votes
1 answer

QuickBlox: how can you clean a group dialog, without deleting it?

The API gives the option of deleting a dialog. Is it possible to clean a dialog (remove all messages) without deleting it?
blueFast
  • 41,341
  • 63
  • 198
  • 344
5
votes
2 answers

Quickblox and Pro Guard error

I'm developing an app that uses the Quickblox SDK. If I compile it with minifyEnabled false It work's fine. But if I enable minify to obfuscate the code I get the following error: 09-15 15:00:50.865 12029-12029/com.app.meet E/AndroidRuntime﹕ FATAL…
Ricardo
  • 708
  • 10
  • 24
5
votes
2 answers

App crashing on loading native library for webRTC

My App is crashing when i add the native libraries in jniLibs, (i.e. libjingle_peerconnection_so.so ) for all architectures. Following is stack trace extract that is causing restart crash of app. W/System.err(11538):…
Swaraj Pal
  • 126
  • 1
  • 8
5
votes
1 answer

Unable to register user on quickblox with PHP cURL

I got token with the session rest call for quickblox. Now I want to register my user on quickblox, but getting following as response to cURL: {"code":null,"message":"No data was provided"} I have written following code:

$token =…
dipendra
  • 261
  • 1
  • 3
  • 9
5
votes
1 answer

QuickBlox - How to use REST API + PHP to create blob content

I tried to create blob content (an image) with QuickBlox REST API(curl) and PHP, the response return always says "size":null, and image is not uploaded to QuickBlox backend, i.e. shows "Not uploaded" in QuickBlox admin portal. I guess maybe the file…
BBS
  • 53
  • 3