简体   繁体   中英

Send message to multiple facebook users

Is there a way to achieve this?

This code is use to send message but pop ups a box where you can type your message then send.

   FB.ui({
                      method: 'send',
                      to: '100007250800729',
                      link:'http://www.mysite.com',
                      redirect_url:location.href,
                      message: 'A request especially for one person.',
                      data: 'tracking information for the user'

                    });

is there a way I can send it immediately by executing the script without the pop up like this so i can send the message to multiple users

foreach(users as user) {
    method: 'send',
    to: user->id,
    link:'http://www.mysite.com',
    redirect_url:location.href,
    message: 'HEllo '.user->name.' A request especially for you.',
    data: 'tracking information for the user' 
} 

There is no way to send a message without a popup. One more thing, you can't write a predefined message. Example :-

FB.ui({ method: 'send', to: 100007250800729 link:' http://www.mysite.com ', redirect_url:location.href });

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM