0

I am able to invoke BBM chat from workspace, but I cannot invoke Video/Audio chat. Is this available, or is it restricted?

Here is my invocation code.

InvokeManager invokeManager;
InvokeRequest request;
request.setTarget("sys.service.videochat");
request.setAction("bb.action.OPEN");
QString data_str = "dest="+pin+"&video=" + video;
QByteArray data = data_str.toUtf8();
qDebug() << "=========BBM Video Data: " + data;
request.setData(data);
invokeManager.invoke(request);
Dakotah Hicock
  • 380
  • 2
  • 15

1 Answers1

0

Invoking BBM Audio and Video from the work perimeter is not supported. It designed to be invoked from the personal perimeter only.

MSohm
  • 815
  • 6
  • 11