1

I want my application to send a message to a BBM group.

Michael Donohue
  • 11,776
  • 5
  • 31
  • 44
Janny
  • 681
  • 1
  • 8
  • 33

1 Answers1

0

Currently there isn't a way for your application to specify the BBM Group to share text or an image with. You can provide the text or image to share and invoke to share over a BBM Group. When you do the BBM Group picker appears where the user selects the group they want to post to. Here's some sample QML that shows how to post some text to a BBM Group.

InvokeActionItem {
title: "Share Text Over BBM Group"
query {
    mimeType: "text/plain"
    invokeTargetId: "sys.bbgroups.sharehandler"
    invokeActionId: "bb.action.SHARE"
    data: "This is some text to share in a group."
}
MSohm
  • 815
  • 6
  • 11