0

我正在尝试为应用程序创建一个“共享”按钮,用户将能够从列表中挑选朋友并一次性向他们发送消息,现在我看到了这个kik.pickUsers()功能,我尝试了类似的东西

kik.pickUsers(function (users) {
    if(users) {
        users.forEach(function (user) {
            kik.send(user.username, {
                title : 'TITLE GOES HERE'
            });
        });
    }
});

但似乎只能与一个朋友分享,有没有更好的方法呢?还是我错过了什么?

谢谢!

4

1 回答 1

0

Sorry, there is no way to message multiple users in a single API call yet.

于 2014-11-30T19:25:24.267 回答