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

Popular posts from this blog

assembly - 8086 TASM: Illegal Indexing Mode -

javascript - addthis share facebook and google+ url -

Java, LWJGL, OpenGL 1.1, decoding BufferedImage to Bytebuffer and binding to OpenGL across classes -