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".

1556 questions
0
votes
1 answer

QuickBlox Chat: can't perform video call

I'm developing a video chat application with quickblox. And I have a trouble with performing video call. There are logs of two instances of application started in one time: Sep 11 16:43:40 iPod-touch DimChat[3823] : QBChat/didConnect Sep 11…
DrMoriarty
  • 398
  • 2
  • 14
0
votes
1 answer

quickblox response returning access denied when deleting custom object records

I am trying to simply delete a record from a custom objects class like so. [QBCustomObjects deleteObjectWithID:deletingID className:className delegate:self]; The server responds with this. DELETE…
Eric Alford
  • 917
  • 7
  • 10
0
votes
1 answer

How to use setCustomVideoChatCaptureSession for video chat?

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?
0
votes
2 answers

Quickblox trying to get a sesssion

I've been trying to create a session, even with curl it's giving me something weird (I wiped app id and auth key out in this post): curl -X POST \ -H "Content-Type: application/json" \ -H "QuickBlox-REST-API-Version: 0.1.0" \ -d '{"application_id":…
huggie
  • 15,393
  • 21
  • 74
  • 128
0
votes
1 answer

(Quickblox) Receiving Video Calls from anywhere in the App

This applies to iOS programming specifically using QuickBlox's API for video calls. Obviously you don't want users to receive video calls in just one view controller in the app, so you need to make users be able to receive calls anywhere in the app.…
Alec Kriebel
  • 193
  • 3
  • 9
0
votes
1 answer

Quickblox QBLGeoDataGetRequest: currentPosition is always "200.000000;200.000000"

I'm trying to get all the check-ins near some point on the map: QBLGeoDataGetRequest *getRequest = [QBLGeoDataGetRequest request]; getRequest.currentPosition = CLLocationCoordinate2DMake(10.0, 10.0); getRequest.radius = 100; [QBLocation…
Sergey
  • 39,828
  • 24
  • 80
  • 122
0
votes
1 answer

Quickblox, send push notification via REST API

When trying to send a push notification: {'event[environment]': 'development', 'event[notification_type]': 'push', 'event[message]': u'payload=VGhpcyBpcyBhIHB1c2ggbm90aWZpY2F0aW9uIEFQSSBUZXN0', 'event[user][ids]': 'xxx', 'token': xxx'} I get…
hellphil
  • 385
  • 4
  • 10
0
votes
0 answers

Cannot update custom object (Quickblox)

I'm having a problem updating a custom object. Weird thing is that one object (let's call it object #1) is updated fine, while the other (object #2) returns "Not authorized to update application_settings object". Object #2 belongs to the Account…
Sergey
  • 39,828
  • 24
  • 80
  • 122
0
votes
2 answers

Security - Ejabberd - Validate Client

I have installed Ejabberd in our AWS Server We are developing an iOS messenger app and we don't want other clients to access our messaging server other than our iOS app. All the ejabberd services should be accessible only by our iOS app, To…
gopivignesh.m
  • 1,103
  • 2
  • 11
  • 19
0
votes
1 answer

QuickBlox retrieve user´s password return null value

I would like to retrieve user´s password, but I always get null values, Any idea,please? the code is: public static boolean getUser( int userId) { TAG = "UserService.getUser"; userId = 195655; QBUsers.getUser(userId, new…
0
votes
2 answers

Exception "Can't create handler inside thread that has not called looper prepare" in android app

I'm working on my first android app and I'm trying to use Quickblox.com as my backend. In order to use it, I need to authorize the app by creating a session using their SDK. So, I have the following code: // Initialize QuickBlox application with…
miguel.gazela
  • 133
  • 2
  • 13
0
votes
1 answer

Can't access api.quickblox.com/session.xml

When I try to access api.quickblox.com/session.xml to create a session, I get a 404 error. I tried to access it in both browser and c#. In the browser I get: The page you were looking for doesn't exist. You may have mistyped the address or the page…
Sergey
  • 39,828
  • 24
  • 80
  • 122
0
votes
1 answer

QuickBlox APNS testing issue

I am testing the APNS message feature in QuickBlox. I used the sample code and using the single user option whereby I created a user ("pushuser") and password and added the authentication criteria in the code in appdelegate.m as directed by the…
bachma0507
  • 1,513
  • 2
  • 11
  • 21
0
votes
2 answers

Message id issue connecting chat between iOS and Android in Quickblox

I'm having an issue connecting an iOS and Android device with their corresponding QBChat libraries, with the message ID's. Message objects in Quickblox's iOS library are defined as QBChatMessage objects, that doesn't exist in Quickblox's Android…
dinoenri
  • 265
  • 2
  • 8
0
votes
1 answer

How to retrieve app's popular tags? (Quickblox iOS SDK)

There is a very useful function in quickblox admin dashboard — popular tags. I am wondering if I can get all these tags (tags, not users) with some kind of request? (I am using quickblox iOS SDK). I need them to build a suggestion list for a user. I…
1 2 3
99
100