Facebook chat MQTT library for Node.js
const { Client } = require('libfb')
const client = new Client()
client.login('username', 'password').then(() => {
client.on('message', message => {
console.log('Got a message!')
console.log(message.message)
client.sendMessage(message.threadId, message.message)
})
})
const { Client } = require('libfb')
const client = new Client()
client.login('username', 'password').then(() => {
client.on('participantsAddedToGroupThreadEvent', async event => {
const user = await client.getUserInfo(event.participantIds[0])
client.sendMessage(event.threadId, `Hello, ${user.name}!`)
})
})
See here
const { login } = require('libfb')
login('username', 'password').then(client => {
...
})
becomes
const { Client } = require('libfb')
const client = new Client()
client.login('username', 'password').then(() => {
...
})
We do not guarantee that this product will work correctly. Use only with whitehat accounts for research/educational purposes. We are not responsible for getting banned on Facebook.
MQTT connection logic was based on bitlbee-facebook.
All product and company names are trademarks™ or registered® trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them.
"Facebook" is a registered trademark of Facebook, Inc., used under license agreement.