I've got a Facebook app which I've added to a Facebook page. I want to allow a user to invite friends to go to the page with the app on and to interact with the app there.
I've can invite friends to the app like this:
FB.ui({ method: 'apprequests',
message: '...'
});
But I would actually like to invite them to the page that the app is on rather than the app itself.
I could allow users to send a message to friends instead using a link like: https://www.facebook.com/dialog/send?app_id=... which would allow me to include a link to my Facebook page, but wondered if there was a better way of doing so?
In particular I really like the apprequests ui which displays checkboxes for all your friends. Is there any way I can use this ui, but to promote the page rather than the app?