So, my website is all connected with facebook, you can login and pull friends. I then linked up the request dialog and it brings up the box to send to a friend with a custom message. I am using this code.
FB.ui({ method: 'send',
to: id,
name: name,
description: Desc,
picture: pic,
link: link});
The request sends and gets to the other user, however, the link is denied and says user does not have permission or access as the broken link. It does seem to work when both users have installed our app.
Am I missing a permission when our user logs in with facebook? Or any ideas on what the issue could be. I assume it has to do with something between our app and facebook rather than the request itself.