2

We implemented QuickBlox chat and voip, it was working fine. Two days back suddenly got error while sending voip pushnotifications.

Please see the below error message:

Send voip push - Error

    Optional(Error Domain=xxxxx.quickblox.com Code=422 "Request failed: client error (422)" 
UserInfo={NSErrorFailingURLKey=https://xxxxx.quickblox.com/events.json, NSLocalizedFailureReason={
    errors = (
    "No one can receive the message"
    );
    }, NSLocalizedDescription=Request failed: client error (422)})
Vineesh TP
  • 7,755
  • 12
  • 66
  • 130

2 Answers2

0

It looks like a subscription does not exist for this device, you can check it in admin panel. Here is an article about creating subscriptions.

QuickBlox
  • 233
  • 1
  • 11
0

Got this working.... We have to connect to chat to establish the session and then perform call

First call this API and the session would be established

QBChat.instance.connect

and then perform the call action.

Documentation

Pavan kumar C
  • 393
  • 1
  • 4
  • 15