Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.