On my Facebook canvas app, I generate a link like this, to allow my users to invite their friends who have not yet installed the app.
<?php
// Create Invite Dialog.
$invite = array(
'title' => 'Invite your friends',
'message' => 'Lorem ipsum dolor sit amet.',
// Don't invite users with app already installed.
'filters' => "['app_non_users']",
'redirect_uri' => $config['app_canvas_url'] . '?action=done'
);
$invite_url = 'https://www.facebook.com/dialog/apprequests?'.
'app_id='.$config['app_id'].'&'.
'message='.urlencode($invite['message']).'&'.
'title='.urlencode($invite['title']).'&'.
'filters='.urlencode($invite['filters']).'&'.
'redirect_uri='.urlencode($invite['redirect_uri']);
echo '<a href="'.$invite_url.'">Invite Friends</a>';
?>
However, the filter appears not to be working correctly.
I have a test account which I invite to try the app. After the test account installs the app (by allowing Facebook permissions), I then revisit the link. Once again the test account shows up for me to invite.
I've read over the Request Dialog documentation, and I can't see what I'm doing wrong.