Reputation: 385
I would like to send a private message to inbox, like:
$facebook->api('/me/feed','POST',array(
'message'=>'mensagem aqui',
'name'=>'nome aqui',
'caption'=>'caption aqui',
));
but send it to inbox.
it's possible do to?
I mean it:
Upvotes: 1
Views: 7357
Reputation: 76
Not possible. See Facebook Permissions and Graph API (scroll down to Publishing section).
If the user has a facebook email (like [email protected]) you can just send an email there. Another alternative is to do a 'private' post. See Graph API Post
Upvotes: 3