I have a Facebook web app that has both a canvas page and is hosted on my domain (login through the site).
I want to allow users to invite friends / send requests to specific Facebook friends with the frictionless requests functionality so that any future requests to that friend do not require the user's action.
From https://developers.facebook.com/docs/reference/dialogs/requests/, I see how to enable it using the FB JS SDK. I am trying to enable it using a direct URL call instead of the SDK though, and I cannot get it to work. Is it possible without using the JS SDK?
Using their direct URL example, I've tried something like this:
https://www.facebook.com/dialog/apprequests?
app_id=APP_ID&
message=Facebook%20Dialogs%20are%20so%20easy!&
frictionless_requests=true&
redirect_uri=http://www.example.com/response
But it doesn't seem to work and I suspect it's only possible using the JS SDK.
Thank you!