Reputation: 31502
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.)
Upvotes: 0
Views: 1472
Reputation: 159105
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).
Upvotes: 1