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
3
votes
2 answers

quickblox error when login, android

I'm using quickblox for a chat on android platform, with facebook auth, I do these steps such 1)QBSettings.getInstance().fastConfigInit(..,..,..) 2)QBAuth.createSession(this, QBQueries.QB_QUERY_AUTHORIZE_APP) 3)SmackAndroid.init(this) 4)facebook…
fbenedet
  • 131
  • 7
3
votes
2 answers

Quickblox unable to send message chat

I use the sample code in github for ios sdk and I added my account details but when I send a message in chatviewcontroller I got this log: -[QBChat sendMessage:] -> return. You have to be logged in in order to use Chat API I tried many solutions…
Dhekra Zaied
  • 97
  • 10
3
votes
0 answers

Quickblox iOS SDK: Using the or custom operator in custom object query

The Quickblox docs say you can perform an OR search query using the approach below. 1.name[or]=sam,igor 2.name[or]=sam&lastname[or]=johnson 1.Will return records with name sam or igor 2.Will return records with name sam or lastname…
Eric Alford
  • 926
  • 7
  • 11
3
votes
1 answer

Video feed not working - "qbvideochat_p2pIsNotPossible"

So I just started working with QB and am trying to implement the videochat. I took the code from their sample and modified it a bit. I'm able to connect two devices with sound, but nothing appears for video. I did notice this message in the logs: …
OdieO
  • 6,836
  • 7
  • 56
  • 88
3
votes
0 answers

How to display images as uitableviewcell in ios quickblox chat app?

I am using a custom tableview cell that displays text in chat bubbles and its working fine. But i want to display images in chat. For that i am doing belowed steps: TO choose and upload file: - (IBAction)btnAttachments:(id)sender{ self.imagePicker…
Milan Manwar
  • 374
  • 3
  • 10
3
votes
1 answer

Quick blox chat not authenticating

I am using quickblox in my app to do 1 to 1 chat. The user is already login. But when I try to login the chat, I get the following error. 2014-03-31 12:42:09.532 MyChat[2175:3803] QBChat/didNotAuthenticate, error:
Abin George
  • 644
  • 6
  • 21
3
votes
1 answer

Android QuickBlox - User must have a list of contacts

I'm new to quickblox, I have checked some official tutorials, and I've been able to create and connect to my application. Now the problem I'm having is, that in my quickblox account, I only have the option to make "rooms", something similar to irc I…
3
votes
1 answer

how to check if user exist in quickblox android api?

I'm developing an android application using quickblox, i try to check if a usr exist using his phone number. Api return no errors, but return 0 for users found. I check phone number in quickblox panel and is present...what's the…
Simone M
  • 677
  • 1
  • 10
  • 26
3
votes
2 answers

QuickBlox not sending APNS

Suddenly I'm getting an error when sending APNS through QuickBlox, and it's so weird cause it was working pretty well before. After user is logged i'm using TRegisterSubscriptionWithDelegate to register it for APNS, when sending APNS the error…
Marcos Reboucas
  • 3,409
  • 1
  • 29
  • 35
3
votes
1 answer

using GNU Parallel for pagination

I like GNU Parallel and have tried to use it for pagination but need help to get it working successfully. Basically, I am following the use cases on the Quickblox API guide to get…
Tjb LaMac
  • 71
  • 6
3
votes
1 answer

Quickblox session expiration while on background. How to handle it?

When the user goes to background, I log out the user from chat. When the user comes back from background, I log the use again in chat. This works well but not every time. Sometimes when the user keeps the app more then 2 hours in background, the…
Mario Frade
  • 273
  • 1
  • 2
  • 11
3
votes
1 answer

Quickblox Change Camera and Record Video Chat

I am using QuickBlox Video Chat Sample and it is working fine. Now I want to use back camera and Documentation says that camera can be changed during video call by using cameraView.switchCamera() . But I dont know where should I put this code . Also…
Rahul Chauhan
  • 353
  • 1
  • 4
  • 17
3
votes
3 answers

QuickBlox 10 Gb traffic/storage in free tier

I am developing a iOS video chat app using QuickBlox api but I didn't getting meaning of 10 Gb traffic/storage. I read about it from here http://quickblox.com/plans/free/ I have three questions: Q.1) How much storage/traffic will be used, If we…
Dipak
  • 2,263
  • 1
  • 21
  • 27
3
votes
2 answers

Quickblox push notification badge counter iOS REST

I'm building an app with the Corona SDK which has a QuickBlox back end. I have one final technical challenge - how can I get the badge counter to increment each time a push notification is received? I am using the REST API to send the messages.
3
votes
1 answer

Quickblox: arrays in custom objects are not being downloaded correctly

- (void)loadUserInfoForId:(int)userId { NSMutableDictionary *getRequest = [NSMutableDictionary dictionary]; [getRequest setObject:[NSNumber numberWithInt:userId] forKey:@"user_id"]; [QBCustomObjects…
Sergey
  • 47,222
  • 25
  • 87
  • 129