Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So i am sending facebook notifications with the javascript API using the following:

FB.ui({method: 'apprequests',
    message: message,
    to: ids
}, requestCallback);
alert('Notification Sent!');

Works fine, its just when you get the notification & click the notification in the top left does not out put your message just says:

"NAME sent you a request"

So I would like to know how if possible to put the message in the notification bar.

Thanks

share|improve this question

2 Answers

up vote 1 down vote accepted

add the new_style_message parameter, notification should go with your message. then your block for sending notification will be like:

FB.ui({method: 'apprequests',
    message: message,
    to: ids,
    new_style_message: true
}, requestCallback);
alert('Notification Sent!');

hope it works, actually its an undocumented parameter, so I would say don't rely on it completely. btw I use it anyway.

share|improve this answer
I would say that it is unwise to rely upon undocumented parameters, especially where Facebook Platform is concerned! – Matthew Johnston Oct 31 '12 at 17:14
yeah, I know.. that I have mentioned in answer as well. But I think if it is not causing any problem anyway so why not use it. until it works, apprequest notification will be sent with message, if it stop working anyhow notification will be sent as sender has sent you a request. – Smita Oct 31 '12 at 17:20
The problem is that there are no requirements for non-documented features to remain working, as you have encountered: stackoverflow.com/questions/12891255/… – Matthew Johnston Oct 31 '12 at 17:31
yeah, actually sometimes it sends notification with message and sometimes it sends as sender has sent you a request. that's why I had asked that question for any other alternative but didn't get one :-( – Smita Oct 31 '12 at 17:34

Are you testing using an App that runs on Facebook.com (such as a Canvas App or Page App)? If so, you should instead use the Notifications API:

https://developers.facebook.com/docs/app-notifications/

This is the newer version and allows you to customise the text of the actual notification. The message parameter in the apprequests dialog is just customizing a separate bit of text that appears on the App Center requests page. It was never intended for actually customizing the Notification text itself.

Hope this helps!

share|improve this answer
As a follow up to my answer, I've just noticed you are sending a User to User request (the Notifications API is for App to User requests). The notification text for User to User requests is not currently customizable. – Matthew Johnston Oct 31 '12 at 17:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.