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
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
  • 47,222
  • 25
  • 87
  • 129
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
  • 415
  • 6
  • 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
  • 47,222
  • 25
  • 87
  • 129
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…
gvm
  • 1,153
  • 3
  • 12
  • 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
  • 143
  • 2
  • 14
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
  • 47,222
  • 25
  • 87
  • 129
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,543
  • 2
  • 11
  • 22
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…
0
votes
1 answer

Retrieving all blobs from opponent (iOS Content/Chat Modules)

How can I retrieve all blobs uploaded by 'opponent' (not just opponent.blobId)? Is there any solution just like PagedRequest for currentUser's blob?
0
votes
1 answer

Access direct URL of image stored in public blob — iOS Content Module

Is there a way to access a direct URL of a public image when I know its blob.ID?
0
votes
1 answer

How to list all the users belonging to the current application, not the current account in QuickBlox for IOS?

I'm using the Quick Blox ios SDK. I have created two apps in the QuickBlox dashboard. While listing the users in the application its showing all the users belonging to my account[users of both the apps], not the users of the current application.…
Augustine
  • 1,714
  • 1
  • 17
  • 21
0
votes
1 answer

QuickBlox: can't get push notifications to work using REST api

I'm developing a quickblox application using Adobe AIR, which forces me to use the REST Api instead of the native libraries. I can't get the push notifications to work for offline Messages or the admin panel. Here's the details of what I do: Admin…
0
votes
1 answer

Issues with delivering chat messages to offline user

I have an issue delivering messages in chat when one of the users goes "offline". When 1-on-1 chat is initialized and two users are chatting, messages are being delivered and everything works great, but when app of one of the users goes background,…
1 2 3
99
100