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.

The Facebook JavaScript API lets you send app notifications from your client-side app:

FB.ui({ method: 'apprequests', message: 'Test Request' })

...which results in an app notification:

How can I reproduce this behavior on the server side through Node?

(The Graph API has no method to do this. I looked.)

share|improve this question

1 Answer

up vote 1 down vote accepted

You're talking about Requests, and the documentation is over in the Dialogs section (see also the Request docs). If you get permission from the user to send Frictionless Requests, you can do this programmatically; otherwise, you have to show a request dialog (either via a popup for using a redirect).

share|improve this answer
Thanks! Enlightening. – a paid nerd Aug 16 '12 at 3:49

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.