tags:

views:

415

answers:

3

Hi, I know the notification.send is about to be deprecated but I still wanted to try it out. I'm using javascript on client side and want to send notifications from the client side. I'm using

Facebook.notifications.send('uid','message','user_to_user'

Doesn't return me any results also tried.

Facebook.notifications_send('uid','message','user_to_user')

Any Ideas on where I'm going wrong?

+1  A: 

it's not possible to use FBJS with sending notification

in PHP use: $facebook->api_client->notifications_send($uid, 'message', 'user_to_user');

akram
apparently I did send notifications using the method :) Just lost it now.
Fahim Akhter
A: 

notifications_send is outdate method. you will receive an empty response. check on new ghrap sytem on http://developers.facebook.com/

Stefano Caravana
+1  A: 

Notifications are deprecated. Look here: http://wiki.developers.facebook.com/index.php/Developer_Roadmap

daaku

related questions