sending facebook notifications to multiple users -


İ have facebook canvas application using php-sdk , want send notifications multiple users.

using code sending notifications , working.

$facebook->api('/userid_1/notifications', 'post', parameters); 

but want send multiple ids try code not working;

$facebook->api('/userid_1,userid_2,userid_3/notifications', 'post', parameters); 

is there way or not possible?

the sdk doesn't support multiple recipients.

create multiple instructions like:

$facebook->api('/userid_1/notifications', 'post', parameters); $facebook->api('/userid_2/notifications', 'post', parameters); // ... 

Comments