I have an app in which I'm allowing users to send app invite requests based on friend lists.
I am using the call:
FB.ui({ method: 'apprequests',
message: 'My App Request',
to: users,
}, requestCallback);
The issue that I am having is that I make the request to GraphAPI /FRIENDLIST_ID/members? It is returning members who have no yet accepted a friend request and so when I make the apprequests call above I get the following error:
API Error Code: 100 API Error Description: Invalid parameter Error Message: Can only send requests to friends or users of this application.
Is there a way to make the FB.ui call with specific users and then if it fails replace the request with the to field blank so the user can select the users they want to send to? Or is there a way to tell if someone has accepted your friend request or not?