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
1 answer

Quickblox getting a session receives "Unexpected signature" error

When getting a session, I get an "unexpected error". Here is my code to get the signature (modified from this since that code is without some imports and notably hmac.new() is used instead of hmac() since that code doesn't work for me. import…
huggie
  • 17,587
  • 27
  • 82
  • 139
3
votes
2 answers

Authentication and getting a session token from Quickblox in Python

I'm doing it through the REST API. Two questions 1) I want to push some existing data to Quickblox custom object. How many REST calls do I need? (I am not really clear about the whole state of affair involving computer security.) Is it first to (a)…
huggie
  • 17,587
  • 27
  • 82
  • 139
3
votes
4 answers

I am getting an unauthorized error quickblox

I have the following code using quickblox. Unfortunately, when I accessthe view controller, I get an "unAuthorized" error from quickblox API. What am I doing wrong? #import "QChatViewController.h" #include "ChatMessageTableViewCell.h" @interface…
Chris Hansen
  • 7,813
  • 15
  • 81
  • 165
3
votes
3 answers

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

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…
Sergey
  • 47,222
  • 25
  • 87
  • 129
3
votes
2 answers

check for valid user session

Does the QuickBlox SDK for iOS include a method for checking / storing a valid user session? Unless the user has specifically logged out, they should be automatically logged back in. Does the SDK have a built in mechanism for dealing with this or do…
goto_10
  • 460
  • 1
  • 3
  • 13
3
votes
2 answers

Objective Sharpie binding error: Could not find a part of the path "/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h"

I'm trying to bind a Quickblox iOS SDK to Xamarin, but I'm getting the following error: Could not find a part of the path "/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h". How can I fix this problem?
Sergey
  • 47,222
  • 25
  • 87
  • 129
3
votes
1 answer

How to get token in Quickblox?

I'm using Quickblox in my C# (Xamarin) app. I was unable to port Windows Phone code, so I decided you use the RESTful API. I'm having problems with getting the token. I followed this tutorial and here's my code: public string Timestamp() { …
Sergey
  • 47,222
  • 25
  • 87
  • 129
3
votes
1 answer

Android aSmack XMPP filetransfer always shows in progress and status 0

i m developing a chat app in which i need to send images between peer to peer chat users. For now i m able to send image and my filereceiver also accepts request and start receiving file. But printing status always keep printing: LOG: Progress: 0.0…
Vyoma
  • 65
  • 7
3
votes
2 answers

Android cancelling async call

Async calls are great and it seems all the calls using the Quickblox Android SDK are async allowing for easy implementation from the main ui thread. but I need the ability to abort a call to the server as my calls are made by sync adapters and can…
2
votes
1 answer

Duplicate class org.webrtc.AndroidVideoDecoder while using Jitsi Sdk and quickblox-android-sdk

I am using com.quickblox:quickblox-android-sdk-videochat-webrtc:3.9.1 for Chat and org.jitsi.react:jitsi-meet-sdk:2.10.0 //for Meeting but unable to resolve these issues Duplicate class org.webrtc.AndroidVideoDecoder found in…
Umer Waqas
  • 1,794
  • 1
  • 12
  • 15
2
votes
0 answers

Quickblox iOS: Avoid call collision

I want to connect random users on a call (1 on 1 only) but that results sometimes in call collision. Steps that I took so far are: On call button press I create a new session and try to connect with other users The opponent users receives that call…
Visar Ibishi
  • 41
  • 1
  • 3
2
votes
0 answers

Quickblox webrtc video calling with angular 9 not working in iPhone 11

This is the simple code import { Component, OnInit } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; import { CONFIG } from 'src/app/config'; // import { ConsoleReporter } from 'jasmine'; declare var QB: any; @Component({ …
Umashankar Saw
  • 1,131
  • 1
  • 9
  • 25
2
votes
1 answer

Unable to receive messages and incoming events using Quckblox and Flutter

I have tried the sample code provided by QB but event subscription is not working and the method body is never executed. I am attaching my code for reference subscribeToEvent() async { try { await QB.chat.subscribeMessageEvents(…
dbee
  • 21
  • 1
2
votes
0 answers

Facing issue with cross platform notifications with quickblox

I have integrated push notifications with quichkblox SDK with FCM, same is done in iOS app. But when the iOS app is in background or killed then notification sent from android is not received at iOS end. What could be the reason behind this???
Kartika Vij
  • 493
  • 2
  • 4
  • 18
2
votes
1 answer

Is there a way for message to have read status in quickblox group chat only after everyone in group have read it

Me and my team are working on React app and are using QuickBlox for chat feature. We have one on one chat and group chat features. I have searched very carefully in documentation but was not able to find answer to the question: 'Is there a way for…
Lazar Nikolic
  • 4,261
  • 1
  • 22
  • 46