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.)