How to send private message / access facebook chat in Koala, Ruby on Rails
how to use keala to access a user's chat and send a message to another user? Is this what Koala provides this feature to use? I checked the koala documentation, but it looks like I don't have it, or does it have an alternative way to do it?
Any suggestion to do my stuff?
+3
Nicholas Ng
source
to share
2 answers
I think it's impossible. Although the Facebook API documentation does not say that this is not possible. But I don't see a way to do this.
Perhaps you can try this .
0
sudhanshu
source
to share
For posterity, this is possible through the Facebook API.
POST v2.10/{access_token}/messages
recipient: {
id: {recipient_id}
}
message: {
text: "Hello World"
}
0
Maxwell
source
to share