I have a website with connected Facebook API. User is authorized via Facebook with the following permissions: offline_access, user_birthday, read_stream, publish_stream, email, user_about_me, user_website, user_location
I have a list of his friends (user's granted an access to it) and a "Send message" button for each of them. I call fb.ui method with the following options when user clicks on the button:
app_id: fb_app_id,
to: fb_user_id,
method: 'send',
name: 'Message Title',
description: 'Message Text',
picture: '/images/fb-icon-180x180.png',
link: 'http://facebook.com/'
The dialog itself is shown properly (the person I want to send it to is correct), but when I click save, a blank page is shown and no message is sent.
Is it a permission problem or there's a bug in my code? I tried it with and without app_id, but nothing helps.