user964104
user964104

Reputation: 385

How to send inbox messages with facebook sdk php

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:

enter image description here

Upvotes: 1

Views: 7357

Answers (1)

bmac
bmac

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

Related Questions